Package rocks.palaiologos.maja.matrix
Class DoubleLUDecompositionResult
java.lang.Object
rocks.palaiologos.maja.matrix.DoubleLUDecompositionResult
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final DoubleMatrixprivate final booleanprivate final DoubleMatrix -
Constructor Summary
ConstructorsConstructorDescriptionDoubleLUDecompositionResult(DoubleMatrix lower, DoubleMatrix upper, boolean singular) The result of LU decomposition. -
Method Summary
-
Field Details
-
lower
-
upper
-
singular
private final boolean singular
-
-
Constructor Details
-
DoubleLUDecompositionResult
DoubleLUDecompositionResult(DoubleMatrix lower, DoubleMatrix upper, boolean singular) The result of LU decomposition.- Parameters:
lower- The lower triangular matrix.upper- The upper triangular matrix.singular- Whether the matrix is singular. If the matrix is singular, the upper and lower triangular matrices will be null.
-
-
Method Details