LeastSquaresSolver constructor Null safety
Creates a least-squares solver.
Implementation
LeastSquaresSolver(this.x, this.y, this.w)
: assert(x.length == y.length),
assert(y.length == w.length);
Creates a least-squares solver.
LeastSquaresSolver(this.x, this.y, this.w)
: assert(x.length == y.length),
assert(y.length == w.length);