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>)>; }

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

Associated Types

Loading content...

Required methods

fn svddc_inplace(
    &mut self,
    uvt_flag: UVTFlag
) -> Result<(Option<Self::U>, Self::Sigma, Option<Self::VT>)>
[src]

Loading content...

Implementations on Foreign Types

impl<A, S> SVDDCInplace for ArrayBase<S, Ix2> where
    A: Scalar + Lapack,
    S: DataMut<Elem = A>, 
[src]

type U = Array2<A>

type VT = Array2<A>

type Sigma = Array1<A::Real>

Loading content...

Implementors

Loading content...