Click or drag to resize

NMathFunctionsPseudoInverse(FloatComplexMatrix, FloatComplexMatrix, Single) Method

Calculates the Moore Penrose pseudo inverse of a matrix placing in the provided matrix.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public static FloatComplexMatrix PseudoInverse(
	FloatComplexMatrix A,
	FloatComplexMatrix pseudoInverse,
	float epsilon
)

Parameters

A  FloatComplexMatrix
A matrix.
pseudoInverse  FloatComplexMatrix
Matrix in which to place the pseudo inverse of A. Must be size A.Cols x A.Rows.
epsilon  Single
Singular values of A less than epsilon will be set to zero.

Return Value

FloatComplexMatrix
pseudoInverse argument which contains the pseudo inverse of A.
Exceptions
ExceptionCondition
MismatchedSizeExceptionThrown if the size of the pseudoInverse matrix is not equal to the size of the transpose of A.
See Also