Struct lax::SVDOutput[][src]

pub struct SVDOutput<A: Scalar> {
    pub s: Vec<A::Real>,
    pub u: Option<Vec<A>>,
    pub vt: Option<Vec<A>>,
}

Result of SVD

Fields

s: Vec<A::Real>

diagonal values

u: Option<Vec<A>>

Unitary matrix for destination space

vt: Option<Vec<A>>

Unitary matrix for departure space

Auto Trait Implementations

impl<A> RefUnwindSafe for SVDOutput<A> where
    A: RefUnwindSafe,
    <A as Scalar>::Real: RefUnwindSafe
[src]

impl<A> Send for SVDOutput<A> where
    A: Send,
    <A as Scalar>::Real: Send
[src]

impl<A> Sync for SVDOutput<A> where
    A: Sync,
    <A as Scalar>::Real: Sync
[src]

impl<A> Unpin for SVDOutput<A> where
    A: Unpin,
    <A as Scalar>::Real: Unpin
[src]

impl<A> UnwindSafe for SVDOutput<A> where
    A: UnwindSafe,
    <A as Scalar>::Real: UnwindSafe
[src]

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, 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>,