[][src]Trait lapack_traits::blas::Therk

pub trait Therk: ComplexField + Tsyrk {
    fn herk(
        layout: Layout,
        uplo: Part,
        trans: Transpose,
        n: i32,
        k: i32,
        alpha: Self::RealField,
        a: &[Self],
        lda: i32,
        beta: Self::RealField,
        c: &mut [Self],
        ldc: i32
    ); }

Required methods

fn herk(
    layout: Layout,
    uplo: Part,
    trans: Transpose,
    n: i32,
    k: i32,
    alpha: Self::RealField,
    a: &[Self],
    lda: i32,
    beta: Self::RealField,
    c: &mut [Self],
    ldc: i32
)

Hermitian rank k update For real scalars, herk casts Transpose::Conjugate into Transpose::Ordinary and is completely equivalent to syrk

Loading content...

Implementations on Foreign Types

impl Therk for f32[src]

impl Therk for f64[src]

Loading content...

Implementors

impl Therk for c32[src]

impl Therk for c64[src]

Loading content...