pub trait SVDInplace {
    type U;
    type VT;
    type Sigma;

    fn svd_inplace(
        &mut self,
        calc_u: bool,
        calc_vt: bool
    ) -> Result<(Option<Self::U>, Self::Sigma, Option<Self::VT>)>; }
Expand description

singular-value decomposition for mutable reference of matrix

Required Associated Types

Required Methods

Implementations on Foreign Types

Implementors