Constructs the matrix structure for the Cholesky factorization of a sparse symmetric positive definite matrix of type SparseMatrix.

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

Syntax

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

Parameters

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

See Also