Creates the LU factorization of a square matrix of type double.

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

Syntax

C#
public LU(
	double[,] a
)
Visual Basic (Declaration)
Public Sub New ( _
	a As Double(,) _
)
Visual C++
public:
LU(
	array<double,2>^ a
)

Parameters

a
Type: array< System..::.Double ,2>[,](,)[,]
The double square matrix to be factored.

Exceptions

ExceptionCondition
Imsl.Math..::.SingularMatrixException is thrown when the input matrix is singular

See Also