pub struct SVD<A: Scalar> {
    pub u: Array2<A>,
    pub s: Array1<A::Real>,
    pub vt: Array2<A>,
}
Expand description

This structure stores the Singular Value Decomposition of a matrix

Fields

u: Array2<A>

The U matrix

s: Array1<A::Real>

The array of singular values

vt: Array2<A>

The vt matrix

Trait Implementations

Convert to a QR Decomposition.

Compute a singular value decomposition from a range estimate Read more

Return the number of rows of the underlying operator

Return the number of columns of the underlying operator

Return the rank of the underlying operator

Convert to a matrix.

Compress to SVD.

Compress the SVD by specifying a target rank.

Compress the SVD by specifying a relative tolerance.

Convert to a QR Decomposition.

Compute a singular value decomposition from a range estimate Read more

Return the number of rows of the underlying operator

Return the number of columns of the underlying operator

Return the rank of the underlying operator

Convert to a matrix.

Compress to SVD.

Compress the SVD by specifying a target rank.

Compress the SVD by specifying a relative tolerance.

Convert to a QR Decomposition.

Compute a singular value decomposition from a range estimate Read more

Return the number of rows of the underlying operator

Return the number of columns of the underlying operator

Return the rank of the underlying operator

Convert to a matrix.

Compress to SVD.

Compress the SVD by specifying a target rank.

Compress the SVD by specifying a relative tolerance.

Convert to a QR Decomposition.

Compute a singular value decomposition from a range estimate Read more

Return the number of rows of the underlying operator

Return the number of columns of the underlying operator

Return the rank of the underlying operator

Convert to a matrix.

Compress to SVD.

Compress the SVD by specifying a target rank.

Compress the SVD by specifying a relative tolerance.

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

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

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.