Returns the inverse of the lower triangular matrix a.

Namespace: Imsl.Math
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.0.0

Syntax

C#
public static double[,] InverseLowerTriangular(
	double[,] a
)
Visual Basic (Declaration)
Public Shared Function InverseLowerTriangular ( _
	a As Double(,) _
) As Double(,)
Visual C++
public:
static array<double,2>^ InverseLowerTriangular(
	array<double,2>^ a
)

Parameters

a
Type: array< System..::.Double ,2>[,](,)[,]
A double square lower triangular matrix.

Return Value

A double matrix containing the inverse of a.

See Also