SVDDCInto

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

    // Required method
    fn svddc_into(
        self,
        uvt_flag: JobSvd,
    ) -> Result<(Option<Self::U>, Self::Sigma, Option<Self::VT>), LinalgError>;
}
Expand description

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

Required Associated Types§

Required Methods§

Source

fn svddc_into( self, uvt_flag: JobSvd, ) -> Result<(Option<Self::U>, Self::Sigma, Option<Self::VT>), LinalgError>

Implementors§

Source§

impl<A, S> SVDDCInto for ArrayBase<S, Dim<[usize; 2]>>
where A: Scalar + Lapack, S: DataMut<Elem = A>,