(self)
| 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)) |
| 149 | assert_array_equal(apply_along_axis(np.sum, 0, a), |
| 150 | [[27, 30, 33], [36, 39, 42], [45, 48, 51]]) |
| 151 | |
| 152 | def test_preserve_subclass(self): |
| 153 | def double(row): |
nothing calls this directly
no test coverage detected