Click or drag to resize
Cholesky Constructor
Create the Cholesky factorization of a symmetric positive definite matrix of type double.

Namespace: Imsl.Math
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax
public Cholesky(
	double[,] a
)

Parameters

a
Type: SystemDouble
A double square matrix to be factored.
Exceptions
ExceptionCondition
SingularMatrixException is thrown when the input matrix a is singular
NotSPDException is thrown when the input matrix is not symmetric, positive definite.
See Also