#[repr(u8)]pub enum UVTFlag {
Full = 65,
Some = 83,
None = 78,
}
Expand description
Specifies how many of the columns of U and rows of Vᵀ are computed and returned.
For an input array of shape m×n, the following are computed:
Variants§
Full = 65
All m columns of U and all n rows of Vᵀ.
Some = 83
The first min(m,n) columns of U and the first min(m,n) rows of Vᵀ.
None = 78
No columns of U or rows of Vᵀ.
Trait Implementations§
impl Copy for UVTFlag
impl Eq for UVTFlag
impl StructuralPartialEq for UVTFlag
Auto Trait Implementations§
impl Freeze for UVTFlag
impl RefUnwindSafe for UVTFlag
impl Send for UVTFlag
impl Sync for UVTFlag
impl Unpin for UVTFlag
impl UnwindSafe for UVTFlag
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