Click or drag to resize

NMathFunctionsPseudoInverse(DoubleComplexMatrix, DoubleComplexMatrix) Method

Calculates the Moore Penrose pseudo inverse of a matrix.

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

Parameters

A  DoubleComplexMatrix
A matrix.
pseudoInverse  DoubleComplexMatrix
Matrix in which to place the pseudo inverse of A. Must be size A.Cols x A.Rows.

Return Value

DoubleComplexMatrix
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