pub trait SVD {
type Elem;
type Real;
// Required method
fn svd(
&self,
compute_u: bool,
compute_vt: bool,
) -> Result<(Array2<Self::Elem>, Array1<Self::Real>, Array2<Self::Elem>), LapackError>;
}Expand description
SVD trait