Computes the inverse of a given matrix.

Namespace:  CenterSpace.NMath.Core
Assembly:  NMath (in NMath.dll) Version: 5.1.0.0

Syntax

C#
public static FloatMatrix Inverse(
	FloatMatrix A
)
Visual Basic (Declaration)
Public Shared Function Inverse ( _
	A As FloatMatrix _
) As FloatMatrix
Visual C++
public:
static FloatMatrix^ Inverse(
	FloatMatrix^ A
)

Parameters

A
Type: CenterSpace.NMath.Core..::.FloatMatrix
A matrix.

Return Value

The inverse of A.

Exceptions

ExceptionCondition
CenterSpace.NMath.Core..::.MatrixNotSquareExceptionThrown if A is not square.
CenterSpace.NMath.Core..::.SingularMatrixExceptionThrown if A is singular.

See Also