pub fn svd(m: usize, n: usize, data: &[f64]) -> Result<Svd, LinearAlgebraError>Expand description
Singular value decomposition of a row-major m×n matrix — thin facade over the
engine svd (maps the engine error to this lib’s error type). Singular values are
returned in descending order.