Trait ndarray_linalg::lapack_traits::qr::QR_
[−]
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)