Cholesky Class |
Namespace: FinMath.LinearAlgebra.Factorizations
[SerializableAttribute] public class Cholesky : ISolver
The Cholesky type exposes the following members.
Name | Description | |
---|---|---|
Cholesky(Boolean) |
Initializes a new instance of Cholesky factorization of
the given form (upper or lower).
| |
Cholesky(Matrix) |
Initializes a new instance of Cholesky factorization of
the given matrix.
| |
Cholesky(Matrix, Boolean) |
Initializes a new instance of Cholesky factorization of
the given matrix.
|
Name | Description | |
---|---|---|
Determinant |
Returns the determinant of the matrix.
| |
Equals | Determines whether the specified object is equal to the current object. (Inherited from Object.) | |
GetHashCode | Serves as the default hash function. (Inherited from Object.) | |
GetInverse |
Computes the inverse matrix.
| |
GetInverse(Matrix) |
Computes the inverse matrix.
| |
GetType | Gets the Type of the current instance. (Inherited from Object.) | |
IsPositiveDefinite |
Returns in case matrix is positive definite (it also
indicates that Cholesky factorization has been built).
| |
L |
Return the lower Cholesky factor. It is a lower triangular matrix with
positive diagonal elements.
| |
Solve(Matrix) |
Solves a system of linear equations, AX = B.
| |
Solve(Vector) |
Solves a system of linear equations, Ax = b | |
Solve(Matrix, Matrix) |
Solves a system of linear equations, AX = B.
| |
Solve(Vector, Vector) |
Solves a system of linear equations, Ax = b.
| |
ToString | Returns a string that represents the current object. (Inherited from Object.) | |
U |
Return the upper Cholesky factor. It is a upper triangular matrix with
positive diagonal elements.
| |
Update |
Computes Cholesky factorization of the given matrix.
|