Click or drag to resize

NMathFunctionsInverse(DoubleComplexMatrix) Method

Computes the inverse of a given matrix.

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

Parameters

A  DoubleComplexMatrix
A matrix.

Return Value

DoubleComplexMatrix
The inverse of A.
Exceptions
ExceptionCondition
MatrixNotSquareExceptionThrown if A is not square.
SingularMatrixExceptionThrown if A is singular.
See Also