Trait ndarray_linalg::svd::SVDInplace[][src]

pub trait SVDInplace {
    type U;
    type VT;
    type Sigma;
    fn svd_inplace(
        &mut self,
        calc_u: bool,
        calc_vt: bool
    ) -> Result<(Option<Self::U>, Self::Sigma, Option<Self::VT>)>; }

singular-value decomposition for mutable reference of matrix

Associated Types

Loading content...

Required methods

fn svd_inplace(
    &mut self,
    calc_u: bool,
    calc_vt: bool
) -> Result<(Option<Self::U>, Self::Sigma, Option<Self::VT>)>
[src]

Loading content...

Implementations on Foreign Types

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