Trait ndarray_linalg::svd::SVD [] [src]

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

singular-value decomposition of matrix reference

Associated Types

Required Methods

Implementations on Foreign Types

impl<A, S> SVD for ArrayBase<S, Ix2> where
    A: Scalar,
    S: Data<Elem = A>, 
[src]

[src]

Implementors