Trait rust_blas::matrix::ops::Herk[][src]

pub trait Herk: Sized {
    fn herk(
        symmetry: Symmetry,
        trans: Transpose,
        alpha: &Self,
        a: &dyn Matrix<Complex<Self>>,
        beta: &Self,
        c: &mut dyn Matrix<Complex<Self>>
    ); }

Required methods

Implementations on Foreign Types

Implementors