mikera.matrixx.decompose.impl.chol
Class CholeskyLDU
- java.lang.Object
-
- mikera.matrixx.decompose.impl.chol.CholeskyLDU
-
public class CholeskyLDU extends java.lang.ObjectThis variant on the Cholesky decomposition avoid the need to take the square root by performing the following decomposition:
L*D*LT=A
where L is a lower triangular matrix with zeros on the diagonal. D is a diagonal matrix. The diagonal elements of L are equal to one.Unfortunately the speed advantage of not computing the square root is washed out by the increased number of array accesses. There only appears to be a slight speed boost for very small matrices.
-
-
Constructor Summary
Constructors Constructor and Description CholeskyLDU()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method and Description static ICholeskyLDUResultdecompose(AMatrix mat)
-
-
-
Method Detail
-
decompose
public static ICholeskyLDUResult decompose(AMatrix mat)
-
-
DMelt 3.0 © DataMelt by jWork.ORG