Struct lax::SVDOutput[][src]

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

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

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.