I recently started using MathNet to implement our linear algebra, however I had problems translating MATLAB functions into MathNet.
In MATLAB, I often use a simple solution using the backslash operator:
C = A \ B
What is equivalent to this in MathNet?
I get the same results in a small matrix using C = Inv (A) * B, but I don't know if the result is so accurate.
source
share