Click or drag to resize

NMathFunctionsInverse(FloatComplexMatrix) Method

Computes the inverse of a given matrix.

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

Parameters

A  FloatComplexMatrix
A matrix.

Return Value

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