Trait ndarray_linalg::svddc::SVDDCInplace[][src]

pub trait SVDDCInplace {
    type U;
    type VT;
    type Sigma;
    fn svddc_inplace(
        &mut self,
        uvt_flag: UVTFlag
    ) -> Result<(Option<Self::U>, Self::Sigma, Option<Self::VT>)>; }
Expand description

Singular-value decomposition of matrix reference by divide-and-conquer

Associated Types

Required methods

Implementations on Foreign Types

Implementors