pub trait SVDInto {
type U;
type VT;
type Sigma;
// Required method
fn svd_into(
self,
calc_u: bool,
calc_vt: bool,
) -> Result<(Option<Self::U>, Self::Sigma, Option<Self::VT>)>;
}Expand description
singular-value decomposition
Required Associated Types§
Required Methods§
fn svd_into( self, calc_u: bool, calc_vt: bool, ) -> Result<(Option<Self::U>, Self::Sigma, Option<Self::VT>)>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".