pub fn lu_solve(lu: &[f64], pivots: &[i32], b: &[f64]) -> Vec<f64>
Expand description
Solve the linear system Ax = b given a LU decomposed matrix A. The first argument should be a tuple, where the first element is the LU decomposed matrix and the second element is the pivots P.