Constructs the matrix structure for the Cholesky factorization of a sparse Hermitian positive definite matrix of type ComplexSparseMatrix.

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

Syntax

C#
public ComplexSparseCholesky(
	ComplexSparseMatrix A
)
Visual Basic (Declaration)
Public Sub New ( _
	A As ComplexSparseMatrix _
)
Visual C++
public:
ComplexSparseCholesky(
	ComplexSparseMatrix^ A
)

Parameters

A
Type: Imsl.Math..::.ComplexSparseMatrix
The ComplexSparseMatrix Hermitian positive definite matrix to be factored. Only the lower triangular part of the input matrix is used.

See Also