LUSolver constructor

LUSolver({
  1. required RealMatrix matrix,
  2. required List<double> knownValues,
})

Given an equation in the form Ax = b, A is a square matrix containing n equations in n unknowns and b is the vector of the known values.

  • matrix is the matrix containing the equations;
  • knownValues is the vector with the known values.

Implementation

LUSolver({
  required super.matrix,
  required super.knownValues,
});