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

fn householder(l: MatrixLayout, a: &mut [Self]) -> Result<Vec<Self>>[src]

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 $

fn q(l: MatrixLayout, a: &mut [Self], tau: &[Self]) -> Result<()>[src]

Reconstruct Q-matrix from Householder-reflectors

fn qr(l: MatrixLayout, a: &mut [Self]) -> Result<Vec<Self>>[src]

Execute QR-decomposition at once

Loading content...

Implementations on Foreign Types

impl QR_ for f64[src]

impl QR_ for f32[src]

impl QR_ for c64[src]

impl QR_ for c32[src]

Loading content...

Implementors

Loading content...