array_group -> list_to_matrix fixes

This commit is contained in:
Adrian Mariano
2021-10-26 23:17:21 -04:00
parent 71dab62432
commit 2eff8ec203
6 changed files with 10 additions and 8 deletions

View File

@@ -549,7 +549,7 @@ function gaussian_rands(N=1, mean=0, cov=1, seed=undef) =
L = cholesky(cov)
)
assert(is_def(L), "Supplied covariance matrix is not positive definite")
move(mean,array_group(rdata,dim)*transpose(L));
move(mean,list_to_matrix(rdata,dim)*transpose(L));
// Function: spherical_random_points()