(self)
| 111 | apply_along_axis(len, 0, a), len(a)*np.ones(a.shape[1])) |
| 112 | |
| 113 | def test_simple101(self): |
| 114 | a = np.ones((10, 101), 'd') |
| 115 | assert_array_equal( |
| 116 | apply_along_axis(len, 0, a), len(a)*np.ones(a.shape[1])) |
| 117 | |
| 118 | def test_3d(self): |
| 119 | a = np.arange(27).reshape((3, 3, 3)) |
nothing calls this directly
no test coverage detected