pub fn lu_decompose(n: usize, data: &[f64]) -> Result<Lu, LinearAlgebraError>Expand description
LU-decompose a row-major n×n matrix with partial pivoting — thin facade over the
engine lu_decompose (maps the engine error to this lib’s error type).