Skip to main content

svd

Function svd 

Source
pub fn svd(m: usize, n: usize, data: &[f64]) -> Result<Svd, SolversError>
Expand description

Singular value decomposition of a row-major m×n matrix. Singular values are returned in descending order. Returns SolversError::InvalidDimension for an empty/mis-sized input (and propagates eigen failures).