From 7b1688b4ceb15eb3ff15ff27a19fb9050ec2b67a Mon Sep 17 00:00:00 2001 From: Delyan Angelov Date: Sat, 14 Sep 2024 20:31:54 +0300 Subject: [PATCH] restore la/matrix_ops.v --- la/matrix_ops.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/la/matrix_ops.v b/la/matrix_ops.v index 66e1f1a6d..a541ed011 100644 --- a/la/matrix_ops.v +++ b/la/matrix_ops.v @@ -90,7 +90,7 @@ pub fn matrix_svd(mut s []f64, mut u Matrix[f64], mut vt Matrix[f64], mut a Matr if copy_a { acpy = a.clone() } - vlas.dgesvd(c'A', c'A', a.m, a.n, acpy.data, 1, s, u.data, a.m, vt.data, a.n, superb) + vlas.dgesvd(`A`, `A`, a.m, a.n, acpy.data, 1, s, u.data, a.m, vt.data, a.n, superb) } // matrix_inv computes the inverse of a general matrix (square or not). It also computes the