cern.colt.matrix.tfloat.algo.decomposition
Class DenseFloatCholeskyDecomposition
- java.lang.Object
-
- cern.colt.matrix.tfloat.algo.decomposition.DenseFloatCholeskyDecomposition
-
- All Implemented Interfaces:
- java.io.Serializable
public class DenseFloatCholeskyDecomposition extends java.lang.Object implements java.io.SerializableFor 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 an internal flag that may be queried by the isSymmetricPositiveDefinite() method.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor and Description DenseFloatCholeskyDecomposition(FloatMatrix2D A)Constructs and returns a new Cholesky decomposition object for a symmetric and positive definite matrix; The decomposed matrices can be retrieved via instance methods of the returned decomposition object.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method and Description FloatMatrix2DgetL()Returns the triangular factor, L.FloatMatrix2DgetLtranspose()booleanisSymmetricPositiveDefinite()Returns whether the matrix A is symmetric and positive definite.FloatMatrix1Dsolve(FloatMatrix1D b)FloatMatrix2Dsolve(FloatMatrix2D B)Solves A*X = B; returns X.java.lang.StringtoString()Returns a String with (propertyName, propertyValue) pairs.
-
-
-
Constructor Detail
-
DenseFloatCholeskyDecomposition
public DenseFloatCholeskyDecomposition(FloatMatrix2D A)
Constructs and returns a new Cholesky decomposition object for a symmetric and positive definite matrix; The decomposed matrices can be retrieved via instance methods of the returned decomposition object.- Parameters:
A- Square, symmetric matrix.- Throws:
java.lang.IllegalArgumentException- if A is not square.
-
-
Method Detail
-
getL
public FloatMatrix2D getL()
Returns the triangular factor, L.- Returns:
- L
-
getLtranspose
public FloatMatrix2D getLtranspose()
-
isSymmetricPositiveDefinite
public boolean isSymmetricPositiveDefinite()
Returns whether the matrix A is symmetric and positive definite.- Returns:
- true if A is symmetric and positive definite; false otherwise
-
solve
public FloatMatrix2D solve(FloatMatrix2D B)
Solves A*X = B; returns X.- Parameters:
B- A Matrix with as many rows as A and any number of columns.- Returns:
- X so that L*L'*X = B.
- Throws:
java.lang.IllegalArgumentException- if B.rows() != A.rows().java.lang.IllegalArgumentException- if !isSymmetricPositiveDefinite().
-
solve
public FloatMatrix1D solve(FloatMatrix1D b)
-
toString
public java.lang.String toString()
Returns a String with (propertyName, propertyValue) pairs. Useful for debugging or to quickly get the rough picture. For example,rank : 3 trace : 0- Overrides:
toStringin classjava.lang.Object
-
-
DMelt 3.0 © DataMelt by jWork.ORG