[][src]Trait ndarray_linalg::svddc::SVDDCInto

pub trait SVDDCInto {
    type U;
    type VT;
    type Sigma;
    fn svddc_into(
        self,
        uvt_flag: UVTFlag
    ) -> Result<(Option<Self::U>, Self::Sigma, Option<Self::VT>)>; }
[]

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

Associated Types

type U

type VT

type Sigma

Required methods

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

Implementations on Foreign Types

impl<A, S> SVDDCInto 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>

Implementors