test: test for multidimensional covobs multiplication extended

This commit is contained in:
Fabian Joswig 2021-12-07 08:11:38 +00:00
parent e8bcf8de6f
commit 757d8ade06

View file

@ -30,7 +30,7 @@ def get_complex_matrix(dimension):
def test_matmul():
for dim in [4, 6]:
for const in [1, pe.cov_Obs(1.0, 0.002, 'cov')]:
for const in [1, pe.cov_Obs([1.0, 1.0], [[0.001,0.0001], [0.0001, 0.002]], 'norm')[1]]:
my_list = []
length = 100 + np.random.randint(200)
for i in range(dim ** 2):