(self)
| 2617 | np.array([[np.nan, np.nan], [np.nan, np.nan]])) |
| 2618 | |
| 2619 | def test_wrong_ddof(self): |
| 2620 | with warnings.catch_warnings(record=True): |
| 2621 | warnings.simplefilter('always', RuntimeWarning) |
| 2622 | assert_array_equal(cov(self.x1, ddof=5), |
| 2623 | np.array([[np.inf, -np.inf], |
| 2624 | [-np.inf, np.inf]])) |
| 2625 | |
| 2626 | def test_1D_rowvar(self): |
| 2627 | assert_allclose(cov(self.x3), cov(self.x3, rowvar=False)) |
nothing calls this directly
no test coverage detected