Trait lax::QR_[][src]

pub trait QR_: Sized {
    fn householder(l: MatrixLayout, a: &mut [Self]) -> Result<Vec<Self>>;
fn q(l: MatrixLayout, a: &mut [Self], tau: &[Self]) -> Result<()>;
fn qr(l: MatrixLayout, a: &mut [Self]) -> Result<Vec<Self>>; }

Required methods

Execute Householder reflection as the first step of QR-decomposition

For C-continuous array, this will call LQ-decomposition of the transposed matrix $ A^T = LQ^T $

Reconstruct Q-matrix from Householder-reflectors

Execute QR-decomposition at once

Implementations on Foreign Types

Implementors