Trait ndarray_linalg::lapack_traits::qr::QR_ [] [src]

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

Wraps *geqrf and *orgqr (*ungqr for complex numbers)

Required Methods

Implementors