Trait ndarray_linalg::svd::SVDInto
[−]
[src]
pub trait SVDInto {
type U;
type VT;
type Sigma;
fn svd_into(
self,
calc_u: bool,
calc_vt: bool
) -> Result<(Option<Self::U>, Self::Sigma, Option<Self::VT>)>;
}singular-value decomposition
Associated Types
Required Methods
fn svd_into(
self,
calc_u: bool,
calc_vt: bool
) -> Result<(Option<Self::U>, Self::Sigma, Option<Self::VT>)>
self,
calc_u: bool,
calc_vt: bool
) -> Result<(Option<Self::U>, Self::Sigma, Option<Self::VT>)>
Implementations on Foreign Types
impl<A, S> SVDInto for ArrayBase<S, Ix2> where
A: Scalar,
S: DataMut<Elem = A>, [src]
A: Scalar,
S: DataMut<Elem = A>,