Trait lapack_traits::lapack::Tgeqrf[][src]

pub trait Tgeqrf: Scalar {
    unsafe fn geqrf(
        layout: Layout,
        m: i32,
        n: i32,
        a: &mut [Self],
        lda: i32,
        tau: &mut [Self]
    ) -> i32;
unsafe fn ungqr(
        layout: Layout,
        m: i32,
        n: i32,
        k: i32,
        a: &mut [Self],
        lda: i32,
        tau: &[Self]
    ) -> i32; }

Required methods

Implementations on Foreign Types

Implementors