Click or drag to resize

NMathFunctionsInverse(FloatMatrix) Method

Computes the inverse of a given matrix.

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

Parameters

A  FloatMatrix
A matrix.

Return Value

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