Class DoubleLUDecompositionResult

java.lang.Object
rocks.palaiologos.maja.matrix.DoubleLUDecompositionResult

public final class DoubleLUDecompositionResult extends Object
  • Field Details

    • lower

      private final DoubleMatrix lower
    • upper

      private final DoubleMatrix 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