pub struct SvdResult<T> {
pub u: Array2<T>,
pub s: Array1<T>,
pub vt: Array2<T>,
}Expand description
Result of SVD decomposition.
Fields§
§u: Array2<T>Left singular vectors U (m×k where k = min(m,n))
s: Array1<T>Singular values σ (sorted in descending order)
vt: Array2<T>Right singular vectors V^T (k×n)
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<T> Freeze for SvdResult<T>
impl<T> RefUnwindSafe for SvdResult<T>where
T: RefUnwindSafe,
impl<T> Send for SvdResult<T>where
T: Send,
impl<T> Sync for SvdResult<T>where
T: Sync,
impl<T> Unpin for SvdResult<T>
impl<T> UnwindSafe for SvdResult<T>where
T: RefUnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more