pub fn dsolve<T>(
a: &ArrayView2<'_, T>,
b: &ArrayView1<'_, T>,
allow_lsq: bool,
) -> Array1<T>Expand description
Solve a linear system of equations, ax = b, using Gaussian elimination and partial pivoting.
ais a 2d-array.bis a 1d-array.allow_lsqcan be set totrueif the number of rows inais greater than its number of columns.