MatrixInverseLowerTriangular Method |
Returns the inverse of the lower triangular matrix a.
Namespace: Imsl.MathAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax public static double[,] InverseLowerTriangular(
double[,] a
)
Public Shared Function InverseLowerTriangular (
a As Double(,)
) As Double(,)
public:
static array<double,2>^ InverseLowerTriangular(
array<double,2>^ a
)
static member InverseLowerTriangular :
a : float[,] -> float[,]
Parameters
- a
- Type: SystemDouble
A double square lower triangular matrix.
Return Value
Type:
Double
A
double matrix containing the inverse of
a.
See Also