Click or drag to resize

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.LinearAlgebra
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
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

IMatrixDouble
The pseudo inverse of matrix input.
See Also