Class LUDecomposition.Result
- java.lang.Object
-
- com.seedfinding.latticg.math.decomposition.LUDecomposition.Result
-
- Enclosing class:
- LUDecomposition
public static final class LUDecomposition.Result extends java.lang.Object
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description double
getDet()
Matrix
getL()
int
getMatrixSize()
Matrix
getP()
Matrix
getU()
Matrix
inverse()
java.lang.String
toPrettyString()
java.lang.String
toString()
-
-
-
Method Detail
-
getMatrixSize
public int getMatrixSize()
-
getP
public Matrix getP()
-
getL
public Matrix getL()
-
getU
public Matrix getU()
-
getDet
public double getDet()
-
inverse
public Matrix inverse()
-
toPrettyString
public java.lang.String toPrettyString()
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-