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

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

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

Required Methods

Implementations on Foreign Types

impl QR_ for f64
[src]

[src]

[src]

[src]

impl QR_ for f32
[src]

[src]

[src]

[src]

Implementors