(self)
| 2339 | assert_allclose(cov(x, aweights=np.ones(3)), res) |
| 2340 | |
| 2341 | def test_xy(self): |
| 2342 | x = np.array([[1, 2, 3]]) |
| 2343 | y = np.array([[1j, 2j, 3j]]) |
| 2344 | assert_allclose(cov(x, y), np.array([[1., -1.j], [1.j, 1.]])) |
| 2345 | |
| 2346 | def test_empty(self): |
| 2347 | with warnings.catch_warnings(record=True): |
nothing calls this directly
no test coverage detected