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

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

Required methods

Implementations on Foreign Types

Implementors