Computes the inverse of the matrix.

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

Syntax

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

Parameters

A
Type: CenterSpace.NMath.Matrix..::.DoubleComplexLowerTriMatrix
A lower triangular matrix.

Return Value

The inverse of the matrix.

Exceptions

ExceptionCondition
CenterSpace.NMath.Core..::.SingularMatrixExceptionThrown if A is singular.

See Also