Function compute::linalg::backward_substitution[][src]

pub fn backward_substitution(u: &[f64], b: &[f64]) -> Vec<f64>
Expand description

Solve a matrix equation of the form Ux=b, where U is an upper triangular matrix. See the Wikipedia page.