Function compute::linalg::cholesky_solve[][src]

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

Solves the system Lx=b, where L is a lower triangular matrix (e.g., a Cholesky decomposed matrix), and b is a one dimensional vector.