Accord.Math.Matrix.PseudoInverse C# (CSharp) Метод

PseudoInverse() публичный статический Метод

Computes the pseudo-inverse of a matrix.
public static PseudoInverse ( this matrix ) : ].decimal[
matrix this
Результат ].decimal[
        public static decimal[,] PseudoInverse(this decimal[,] matrix)
        {
            return new SingularValueDecompositionD(matrix,
                computeLeftSingularVectors: true,
                computeRightSingularVectors: true,
                autoTranspose: true).Inverse();
        }

Same methods

Matrix::PseudoInverse ( this matrix ) : decimal[][]
Matrix::PseudoInverse ( this matrix ) : ].double[
Matrix::PseudoInverse ( this matrix ) : double[][]
Matrix::PseudoInverse ( this matrix ) : ].float[
Matrix::PseudoInverse ( this matrix ) : float[][]