(self)
| 6277 | assert_equal(np.mean(a, where=False), np.nan) |
| 6278 | |
| 6279 | def test_var_values(self): |
| 6280 | for mat in [self.rmat, self.cmat, self.omat]: |
| 6281 | for axis in [0, 1, None]: |
| 6282 | msqr = _mean(mat * mat.conj(), axis=axis) |
| 6283 | mean = _mean(mat, axis=axis) |
| 6284 | tgt = msqr - mean * mean.conjugate() |
| 6285 | res = _var(mat, axis=axis) |
| 6286 | assert_almost_equal(res, tgt) |
| 6287 | |
| 6288 | @pytest.mark.parametrize(('complex_dtype', 'ndec'), ( |
| 6289 | ('complex64', 6), |
nothing calls this directly
no test coverage detected