pub struct LQ<A: Scalar> {
    pub l: Array2<A>,
    pub q: Array2<A>,
    pub ind: Array1<usize>,
}

Fields

l: Array2<A>

The Q matrix from the LQ Decomposition

q: Array2<A>

The Q matrix from the LQ Decomposition

ind: Array1<usize>

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

Trait Implementations

Return the Q matrix

Return the L matrix

Return the index vector

Compute the LQ decomposition from a given array

Compute a row interpolative decomposition from the LQ decomposition

Number of rows

Number of columns

Rank of the LQ decomposition

Convert the LQ decomposition to a matrix

Compress by giving a target rank

Compress by specifying a relative tolerance

Compress the LQ Decomposition by rank or tolerance

Return the Q matrix

Return the L matrix

Return the index vector

Compute the LQ decomposition from a given array

Compute a row interpolative decomposition from the LQ decomposition

Number of rows

Number of columns

Rank of the LQ decomposition

Convert the LQ decomposition to a matrix

Compress by giving a target rank

Compress by specifying a relative tolerance

Compress the LQ Decomposition by rank or tolerance

Return the Q matrix

Return the L matrix

Return the index vector

Compute the LQ decomposition from a given array

Compute a row interpolative decomposition from the LQ decomposition

Number of rows

Number of columns

Rank of the LQ decomposition

Convert the LQ decomposition to a matrix

Compress by giving a target rank

Compress by specifying a relative tolerance

Compress the LQ Decomposition by rank or tolerance

Return the Q matrix

Return the L matrix

Return the index vector

Compute the LQ decomposition from a given array

Compute a row interpolative decomposition from the LQ decomposition

Number of rows

Number of columns

Rank of the LQ decomposition

Convert the LQ decomposition to a matrix

Compress by giving a target rank

Compress by specifying a relative tolerance

Compress the LQ 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.