-
I'm trying to convert some java code to C# and would like to translate this java code:
How can this be done with math.net numerics? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
See https://numerics.mathdotnet.com/api/MathNet.Numerics.LinearAlgebra.Factorization/Svd%601.htm#Solve |
Beta Was this translation helpful? Give feedback.
-
You might be looking for
|
Beta Was this translation helpful? Give feedback.
You might be looking for
inputmatrix.PseudeInverse()
(which using SVD)?inputmatrix.Inverse()
is using the LU decomposition, not SVD. Or you could use inputmatrix.Svd().Solve(...) with the identity matrix.