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

pub trait Symm: Sized {
    fn symm(
        side: Side,
        symmetry: Symmetry,
        alpha: &Self,
        a: &dyn Matrix<Self>,
        b: &dyn Matrix<Self>,
        beta: &Self,
        c: &mut dyn Matrix<Self>
    ); }

Required methods

Implementations on Foreign Types

Implementors