(self)
| 904 | assert_equal(mXXswapped.shape, (2, 2, 3, 3)) |
| 905 | |
| 906 | def test_cumprod(self): |
| 907 | mX = self._create_data()[5] |
| 908 | mXcp = mX.cumprod(0) |
| 909 | assert_(eq(mXcp._data, mX.filled(1).cumprod(0))) |
| 910 | mXcp = mX.cumprod(1) |
| 911 | assert_(eq(mXcp._data, mX.filled(1).cumprod(1))) |
| 912 | |
| 913 | def test_cumsum(self): |
| 914 | mX = self._create_data()[5] |
nothing calls this directly
no test coverage detected