pub enum SvdJob {
All,
Thin,
SingularValuesOnly,
}Expand description
Controls which parts of the SVD to compute.
Variants§
All
Compute full U and V^T (all left and right singular vectors).
Thin
Compute thin (economy-size) U and V^T: only the first min(m,n) columns/rows.
SingularValuesOnly
Compute singular values only (no U or V^T).
Trait Implementations§
impl Copy for SvdJob
impl Eq for SvdJob
impl StructuralPartialEq for SvdJob
Auto Trait Implementations§
impl Freeze for SvdJob
impl RefUnwindSafe for SvdJob
impl Send for SvdJob
impl Sync for SvdJob
impl Unpin for SvdJob
impl UnsafeUnpin for SvdJob
impl UnwindSafe for SvdJob
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