pub struct QR<A: Scalar> {
    pub q: Array2<A>,
    pub r: Array2<A>,
    pub ind: Array1<usize>,
}

Fields

q: Array2<A>

The Q matrix from the QR Decomposition

r: Array2<A>

The R matrix from the QR Decomposition

ind: Array1<usize>

An index array. If ind[j] = k then the jth column of Q * R is identical to the kth column of the original matrix A.

Trait Implementations

Return the Q matrix

Return the R matrix

Compute the QR decomposition from a given array

Return the index vector

Compute a column interpolative decomposition from the QR decomposition

Compute a QR decomposition from a range estimate Read more

Number of rows

Number of columns

Rank of the QR Decomposition

Convert the QR decomposition to a matrix

Compress by giving a target rank

Compress by specifying a relative tolerance

Compress the QR decomposition by rank or tolerance

Return the Q matrix

Return the R matrix

Compute the QR decomposition from a given array

Return the index vector

Compute a column interpolative decomposition from the QR decomposition

Compute a QR decomposition from a range estimate Read more

Number of rows

Number of columns

Rank of the QR Decomposition

Convert the QR decomposition to a matrix

Compress by giving a target rank

Compress by specifying a relative tolerance

Compress the QR decomposition by rank or tolerance

Return the Q matrix

Return the R matrix

Compute the QR decomposition from a given array

Return the index vector

Compute a column interpolative decomposition from the QR decomposition

Compute a QR decomposition from a range estimate Read more

Number of rows

Number of columns

Rank of the QR Decomposition

Convert the QR decomposition to a matrix

Compress by giving a target rank

Compress by specifying a relative tolerance

Compress the QR decomposition by rank or tolerance

Return the Q matrix

Return the R matrix

Compute the QR decomposition from a given array

Return the index vector

Compute a column interpolative decomposition from the QR decomposition

Compute a QR decomposition from a range estimate Read more

Number of rows

Number of columns

Rank of the QR Decomposition

Convert the QR decomposition to a matrix

Compress by giving a target rank

Compress by specifying a relative tolerance

Compress the QR decomposition by rank or 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.