Click or drag to resize

ICholeskyDecomposition Interface

Cholesky Decomposition of a symmetric, positive definite matrix.

Namespace: Altaxo.Calc.LinearAlgebra
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public interface ICholeskyDecomposition

The ICholeskyDecomposition type exposes the following members.

Properties
 NameDescription
Public propertyIsPositiveDefiniteReturns if the matrix is positive definite.
Public propertyIsSymmetricReturns if the matrix is symmetric.
Public propertyLeftTriangularFactorReturns the left triangular factor L so that A = L * L'.
Top
Methods
 NameDescription
Public methodSolveSolves a set of equation systems of type A * X = B.
Top
Remarks
For a symmetric, positive definite matrix A, the Cholesky decomposition is a lower triangular matrix L so that A = L * L'. If the matrix is not symmetric or positive definite, the constructor returns a partial decomposition and sets two internal variables that can be queried using the IsSymmetric and IsPositiveDefinite properties.
See Also