You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If in method: MathNet.Numerics.Providers.LinearAlgebra.ManagedLinearAlgebraProvider.SingularValueDecomposition(bool computeVectors, float[] a, int rowsA, int columnsA, float[] s, float[] u, float[] vt) you change
double ztest;
double test; to
float ztest;
float test; it will fix the problem!
The following code will fail:
var m = M.DenseOfArray(new[,]
{
{ -2f, -2f, -1f },
{ -2f, 2f, 1f },
{ -1f, -1f, 2f },
});
var pinvM = m.PseudoInverse();
Console.WriteLine(pinvM);
The text was updated successfully, but these errors were encountered: