(self)
| 153 | assert_equal(b, [[2, 3, 4]]) |
| 154 | |
| 155 | def test_ravel(self): |
| 156 | a = masked_array(np.matrix([1, 2, 3, 4, 5]), mask=[[0, 1, 0, 0, 0]]) |
| 157 | aravel = a.ravel() |
| 158 | assert_equal(aravel.shape, (1, 5)) |
| 159 | assert_equal(aravel._mask.shape, a.shape) |
| 160 | |
| 161 | def test_view(self): |
| 162 | # Test view w/ flexible dtype |
nothing calls this directly
no test coverage detected