Trait ndarray_linalg::svddc::SVDDC[][src]

pub trait SVDDC {
    type U;
    type VT;
    type Sigma;
    fn svddc(
        &self,
        uvt_flag: UVTFlag
    ) -> Result<(Option<Self::U>, Self::Sigma, Option<Self::VT>)>; }

Singular-value decomposition of matrix (copying) by divide-and-conquer

Associated Types

Loading content...

Required methods

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

Loading content...

Implementations on Foreign Types

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