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

pub trait Trmm: Sized {
    fn trmm(
        side: Side,
        symmetry: Symmetry,
        trans: Transpose,
        diag: Diagonal,
        alpha: &Self,
        a: &dyn Matrix<Self>,
        b: &mut dyn Matrix<Self>
    ); }

Required methods

Implementations on Foreign Types

Implementors