org.ejml.alg.dense.decompose.lu
Class LUDecompositionAlt_CD64
- java.lang.Object
-
- org.ejml.alg.dense.decompose.lu.LUDecompositionBase_CD64
-
- org.ejml.alg.dense.decompose.lu.LUDecompositionAlt_CD64
-
- All Implemented Interfaces:
- DecompositionInterface<CDenseMatrix64F>, LUDecomposition<CDenseMatrix64F>
public class LUDecompositionAlt_CD64 extends LUDecompositionBase_CD64
An LU decomposition algorithm that originally came from Jama. In general this is faster than what is in NR since it creates a cache of a column, which makes a big difference in larger matrices.
-
-
Constructor Summary
Constructors Constructor and Description LUDecompositionAlt_CD64()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method and Description booleandecompose(CDenseMatrix64F a)This is a modified version of what was found in the JAMA package.-
Methods inherited from class org.ejml.alg.dense.decompose.lu.LUDecompositionBase_CD64
_getVV, _solveVectorInternal, computeDeterminant, getIndx, getLower, getLU, getPivot, getPivot, getUpper, inputModified, isSingular, quality, setExpectedMaxSize
-
-
-
-
Method Detail
-
decompose
public boolean decompose(CDenseMatrix64F a)
This is a modified version of what was found in the JAMA package. The order that it performs its permutations in is the primary difference from NR- Parameters:
a- The matrix that is to be decomposed. Not modified.- Returns:
- true If the matrix can be decomposed and false if it can not.
-
-
DMelt 3.0 © DataMelt by jWork.ORG