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

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

Syntax

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

Parameters

a
Type: array< Imsl.Math..::.Complex ,2>[,](,)[,]
The Complex square matrix to be factored.

Exceptions

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

See Also