Uses of Class
org.djunits.util.MatrixMath.LU
Packages that use MatrixMath.LU
-
Uses of MatrixMath.LU in org.djunits.util
Methods in org.djunits.util that return MatrixMath.LUModifier and TypeMethodDescriptionprotected static MatrixMath.LUMatrixMath.luDecompose(double[] a, int n) Decompose.Methods in org.djunits.util with parameters of type MatrixMath.LUModifier and TypeMethodDescriptionprotected static doubleMatrixMath.detFromLU(MatrixMath.LU luRes, int n) Return the determinant, based on the LU decomposition.protected static booleanMatrixMath.isSingularFromLU(MatrixMath.LU luRes, int n, double relTol) Determine whether the matrix is singular, based on the LU decomposition.protected static voidMatrixMath.luSolveInPlace(MatrixMath.LU luRes, int n, double[] b) Solve LU x = b for one right-hand side vector b (vector solve).