(self)
| 14 | np.poly1d([-1, 1])) |
| 15 | |
| 16 | def test_cov_parameters(self): |
| 17 | # Ticket #91 |
| 18 | x = np.random.random((3, 3)) |
| 19 | y = x.copy() |
| 20 | np.cov(x, rowvar=True) |
| 21 | np.cov(y, rowvar=False) |
| 22 | assert_array_equal(x, y) |
| 23 | |
| 24 | def test_mem_digitize(self): |
| 25 | # Ticket #95 |
nothing calls this directly
no test coverage detected