Trait ndarray_linalg::svd::SVDMut
[−]
pub trait SVDMut {
type U;
type VT;
type Sigma;
fn svd_mut(
&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
Required Methods
fn svd_mut(
&mut self,
calc_u: bool,
calc_vt: bool
) -> Result<(Option<Self::U>, Self::Sigma, Option<Self::VT>)>
&mut self,
calc_u: bool,
calc_vt: bool
) -> Result<(Option<Self::U>, Self::Sigma, Option<Self::VT>)>