Enum lax::UVTFlag[][src]

#[repr(u8)]pub enum UVTFlag {
    Full,
    Some,
    None,
}

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

All m columns of U and all n rows of Vᵀ.

Some

The first min(m,n) columns of U and the first min(m,n) rows of Vᵀ.

None

No columns of U or rows of Vᵀ.

Trait Implementations

impl Clone for UVTFlag[src]

impl Copy for UVTFlag[src]

impl Eq for UVTFlag[src]

impl PartialEq<UVTFlag> for UVTFlag[src]

impl StructuralEq for UVTFlag[src]

impl StructuralPartialEq for UVTFlag[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,