MCPcopy Create free account
hub / github.com/numpy/numpy / test_cov_parameters

Method test_cov_parameters

numpy/lib/tests/test_regression.py:16–22  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 3

assert_array_equalFunction · 0.90
randomMethod · 0.80
copyMethod · 0.45

Tested by

no test coverage detected