pub struct RandomizedSvdResult<T> {
pub u: Array2<T>,
pub s: Array1<T>,
pub v: Array2<T>,
}Expand description
Result of randomized SVD.
Fields§
§u: Array2<T>Left singular vectors U (m × k)
s: Array1<T>Singular values σ (k elements, sorted descending)
v: Array2<T>Right singular vectors V (n × k), NOT V^T
Trait Implementations§
Source§impl<T: Clone> Clone for RandomizedSvdResult<T>
impl<T: Clone> Clone for RandomizedSvdResult<T>
Source§fn clone(&self) -> RandomizedSvdResult<T>
fn clone(&self) -> RandomizedSvdResult<T>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl<T> Freeze for RandomizedSvdResult<T>
impl<T> RefUnwindSafe for RandomizedSvdResult<T>where
T: RefUnwindSafe,
impl<T> Send for RandomizedSvdResult<T>where
T: Send,
impl<T> Sync for RandomizedSvdResult<T>where
T: Sync,
impl<T> Unpin for RandomizedSvdResult<T>
impl<T> UnwindSafe for RandomizedSvdResult<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