Class LUDecompositionNR_ZDRM
- java.lang.Object
-
- org.ejml.dense.row.decompose.lu.LUDecompositionBase_ZDRM
-
- org.ejml.dense.row.decomposition.lu.LUDecompositionNR_ZDRM
-
- All Implemented Interfaces:
org.ejml.interfaces.decomposition.DecompositionInterface<org.ejml.data.ZMatrixRMaj>,org.ejml.interfaces.decomposition.LUDecomposition<org.ejml.data.ZMatrixRMaj>,org.ejml.interfaces.decomposition.LUDecomposition_F64<org.ejml.data.ZMatrixRMaj>
public class LUDecompositionNR_ZDRM extends org.ejml.dense.row.decompose.lu.LUDecompositionBase_ZDRMThis code is inspired from what's in numerical recipes.
-
-
Constructor Summary
Constructors Constructor Description LUDecompositionNR_ZDRM()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleandecompose(org.ejml.data.ZMatrixRMaj orig)This implementation of LU Decomposition uses the algorithm specified below: "Numerical Recipes The Art of Scientific Computing", Third Edition, Pages 48-55
-
-
-
Method Detail
-
decompose
public boolean decompose(org.ejml.data.ZMatrixRMaj orig)
This implementation of LU Decomposition uses the algorithm specified below: "Numerical Recipes The Art of Scientific Computing", Third Edition, Pages 48-55
- Parameters:
orig- The matrix that is to be decomposed. Not modified.- Returns:
- true If the matrix can be decomposed and false if it can not. It can return true and still be singular.
-
-