(self)
| 140 | apply_along_axis(len, 0, a), len(a) * np.ones(a.shape[1])) |
| 141 | |
| 142 | def test_simple101(self): |
| 143 | a = np.ones((10, 101), 'd') |
| 144 | assert_array_equal( |
| 145 | apply_along_axis(len, 0, a), len(a) * np.ones(a.shape[1])) |
| 146 | |
| 147 | def test_3d(self): |
| 148 | a = np.arange(27).reshape((3, 3, 3)) |
nothing calls this directly
no test coverage detected