(self)
| 3966 | assert_equal(a.anom(), [-1, 0, 1]) |
| 3967 | |
| 3968 | def test_anom_shape(self): |
| 3969 | a = masked_array([1, 2, 3]) |
| 3970 | assert_equal(a.anom().shape, a.shape) |
| 3971 | a.mask = True |
| 3972 | assert_equal(a.anom().shape, a.shape) |
| 3973 | assert_(np.ma.is_masked(a.anom())) |
| 3974 | |
| 3975 | def test_anom(self): |
| 3976 | a = masked_array(np.arange(1, 7).reshape(2, 3)) |
nothing calls this directly
no test coverage detected