Skip to content

Commit

Permalink
restore la/matrix_ops.v
Browse files Browse the repository at this point in the history
  • Loading branch information
spytheman committed Sep 14, 2024
1 parent a34ed83 commit 7b1688b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion la/matrix_ops.v
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 7b1688b

Please sign in to comment.