Package org.djunits.util
Class MatrixMath.LU
java.lang.Object
org.djunits.util.MatrixMath.LU
- Enclosing class:
- MatrixMath
Helper class for LU decomposition with partial pivoting.
-
Constructor Summary
ConstructorsConstructorDescriptionLU(double[] lu, int[] piv, int pivotSign, double scale) Construct an LU instance. -
Method Summary
-
Constructor Details
-
LU
LU(double[] lu, int[] piv, int pivotSign, double scale) Construct an LU instance.- Parameters:
lu- combined L (unit diag) and U, row-majorpiv- row permutationspivotSign- the pivot sign, +1 or -1scale- scale for tolerance decisions
-