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 FloatMatrix PseudoInverse(
	FloatSVDecomp decomp,
	FloatMatrix A
)
Visual Basic (Declaration)
Public Shared Function PseudoInverse ( _
	decomp As FloatSVDecomp, _
	A As FloatMatrix _
) As FloatMatrix
Visual C++
public:
static FloatMatrix^ PseudoInverse(
	FloatSVDecomp^ decomp, 
	FloatMatrix^ A
)

Parameters

decomp
Type: CenterSpace.NMath.Matrix..::.FloatSVDecomp
A singular value decomposition.
A
Type: CenterSpace.NMath.Core..::.FloatMatrix
A matrix.

Return Value

See Also