Trait ndarray_linalg::svd::SVD
source · pub trait SVD {
type U;
type VT;
type Sigma;
// Required method
fn svd(
&self,
calc_u: bool,
calc_vt: bool,
) -> Result<(Option<Self::U>, Self::Sigma, Option<Self::VT>)>;
}
Expand description
singular-value decomposition of matrix reference