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

pub trait Tgeqrf: ComplexField {
    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

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

Loading content...

Implementations on Foreign Types

impl Tgeqrf for f32[src]

impl Tgeqrf for f64[src]

Loading content...

Implementors

impl Tgeqrf for c32[src]

impl Tgeqrf for c64[src]

Loading content...