Click or drag to resize

Cholesky Class

Implements the Cholesky factorization of real square positive-definite matrix.
Inheritance Hierarchy
SystemObject
  FinMath.LinearAlgebra.FactorizationsCholesky

Namespace:  FinMath.LinearAlgebra.Factorizations
Assembly:  FinMath (in FinMath.dll) Version: 2.4.7-0a995bd0ea1854c2c868ec3f8dae606c5777e170
Syntax
C#
[SerializableAttribute]
public class Cholesky : ISolver

The Cholesky type exposes the following members.

Constructors
  NameDescription
Public methodCholesky(Boolean)
Initializes a new instance of Cholesky factorization of the given form (upper or lower).
Public methodCholesky(Matrix)
Initializes a new instance of Cholesky factorization of the given matrix.
Public methodCholesky(Matrix, Boolean)
Initializes a new instance of Cholesky factorization of the given matrix.
Top
Methods
  NameDescription
Public methodDeterminant
Returns the determinant of the matrix.
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetInverse
Computes the inverse matrix.
Public methodGetInverse(Matrix)
Computes the inverse matrix.
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodIsPositiveDefinite
Returns in case matrix is positive definite (it also indicates that Cholesky factorization has been built).
Public methodL
Return the lower Cholesky factor. It is a lower triangular matrix with positive diagonal elements.
Public methodSolve(Matrix)
Solves a system of linear equations, AX = B.
Public methodSolve(Vector)
Solves a system of linear equations, Ax = b
Public methodSolve(Matrix, Matrix)
Solves a system of linear equations, AX = B.
Public methodSolve(Vector, Vector)
Solves a system of linear equations, Ax = b.
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Public methodU
Return the upper Cholesky factor. It is a upper triangular matrix with positive diagonal elements.
Public methodUpdate
Computes Cholesky factorization of the given matrix.
Top
See Also