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

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

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

Required methods

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

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

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

Loading content...

Implementations on Foreign Types

impl QR_ for f64[src]

impl QR_ for f32[src]

Loading content...

Implementors

impl QR_ for c32[src]

impl QR_ for c64[src]

Loading content...