Trait lapack_traits::blas::Tsyrk[][src]

pub trait Tsyrk: Scalar {
    unsafe fn syrk(
        layout: Layout,
        uplo: Part,
        trans: Transpose,
        n: i32,
        k: i32,
        alpha: Self,
        a: &[Self],
        lda: i32,
        beta: Self,
        c: &mut [Self],
        ldc: i32
    ); }

Required methods

Implementations on Foreign Types

Implementors