pub trait QR {
    type Decomp;

    fn qr(&self) -> Result<Self::Decomp>;
}
Expand description

QR decomposition for matrix by reference

Required Associated Types

Required Methods

Decomposes the matrix into semi-orthogonal matrix Q and upper-triangular matrix R, such that Q * R yields the original matrix. Matrix rows must be equal or greater than number of columns.

Implementations on Foreign Types

Implementors