Skip to content

Commit 7b1688b

Browse files
committed
restore la/matrix_ops.v
1 parent a34ed83 commit 7b1688b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

la/matrix_ops.v

+1-1
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ pub fn matrix_svd(mut s []f64, mut u Matrix[f64], mut vt Matrix[f64], mut a Matr
9090
if copy_a {
9191
acpy = a.clone()
9292
}
93-
vlas.dgesvd(c'A', c'A', a.m, a.n, acpy.data, 1, s, u.data, a.m, vt.data, a.n, superb)
93+
vlas.dgesvd(`A`, `A`, a.m, a.n, acpy.data, 1, s, u.data, a.m, vt.data, a.n, superb)
9494
}
9595

9696
// matrix_inv computes the inverse of a general matrix (square or not). It also computes the

0 commit comments

Comments
 (0)