A computationally inexpensive way to calculate the pseudo-inverse of a matrix if an SVDecomp has already been computed.

Namespace:  CenterSpace.NMath.Matrix
Assembly:  NMath (in NMath.dll) Version: 5.1.0.0

Syntax

C#
public static DoubleMatrix PseudoInverse(
	DoubleSVDecomp decomp,
	DoubleMatrix A
)
Visual Basic (Declaration)
Public Shared Function PseudoInverse ( _
	decomp As DoubleSVDecomp, _
	A As DoubleMatrix _
) As DoubleMatrix
Visual C++
public:
static DoubleMatrix^ PseudoInverse(
	DoubleSVDecomp^ decomp, 
	DoubleMatrix^ A
)

Parameters

decomp
Type: CenterSpace.NMath.Matrix..::.DoubleSVDecomp
A singular value decomposition.
A
Type: CenterSpace.NMath.Core..::.DoubleMatrix
A matrix.

Return Value

See Also