Package org.la4j.decomposition
Class CholeskyDecompositor
java.lang.Object
org.la4j.decomposition.AbstractDecompositor
org.la4j.decomposition.CholeskyDecompositor
- All Implemented Interfaces:
Serializable
,MatrixDecompositor
This class represents Cholesky decomposition of matrices. More details
- See Also:
-
Field Summary
Fields inherited from class org.la4j.decomposition.AbstractDecompositor
matrix
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionboolean
applicableTo
(Matrix matrix) Checks whether this decompositor is applicable to given matrix or not.Matrix[]
Returns the result of Cholesky decomposition of given matrixMethods inherited from class org.la4j.decomposition.AbstractDecompositor
fail, self
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.la4j.decomposition.MatrixDecompositor
self
-
Constructor Details
-
CholeskyDecompositor
-
-
Method Details
-
decompose
Returns the result of Cholesky decomposition of given matrixSee http://mathworld.wolfram.com/CholeskyDecomposition.html for more details.
- Specified by:
decompose
in interfaceMatrixDecompositor
- Returns:
- { L }
-
applicableTo
Description copied from interface:MatrixDecompositor
Checks whether this decompositor is applicable to given matrix or not.- Specified by:
applicableTo
in interfaceMatrixDecompositor
- Parameters:
matrix
-- Returns:
-