C# Class Encog.MathUtil.Matrices.Decomposition.CholeskyDecomposition

Cholesky Decomposition. For a symmetric, positive definite matrix A, the Cholesky decomposition is an 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 an internal flag that may be queried by the isSPD() method. This file based on a class from the public domain JAMA package. http://math.nist.gov/javanumerics/jama/
Afficher le fichier Open project: encog/encog-silverlight-core Class Usage Examples

Méthodes publiques

Méthode Description
CholeskyDecomposition ( System.Matrix matrix ) : System

Cholesky algorithm for symmetric and positive definite matrix.

Solve ( System.Matrix b ) : System.Matrix

Solve A*X = B.

Method Details

CholeskyDecomposition() public méthode

Cholesky algorithm for symmetric and positive definite matrix.
public CholeskyDecomposition ( System.Matrix matrix ) : System
matrix System.Matrix Square, symmetric matrix.
Résultat System

Solve() public méthode

Solve A*X = B.
public Solve ( System.Matrix b ) : System.Matrix
b System.Matrix A Matrix with as many rows as A and any number of columns.
Résultat System.Matrix