MatrixMathPseudoInverse(IROMatrixDouble, Int32) Method |
Calculates the pseudo inverse of the matrix input by means of singular value decomposition.
A relative value of 100*DBL_EPSILON is used to chop the singular values before calculation.
Namespace: Altaxo.Calc.LinearAlgebraAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax public static IMatrix<double> PseudoInverse(
IROMatrix<double> input,
out int rank
)
Parameters
- input IROMatrixDouble
- Input matrix
- rank Int32
- Returns the rank of the input matrix.
Return Value
IMatrixDoubleThe pseudo inverse of matrix
input.
See Also