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

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

fn trmm(
    side: Side,
    symmetry: Symmetry,
    trans: Transpose,
    diag: Diagonal,
    alpha: &Self,
    a: &dyn Matrix<Self>,
    b: &mut dyn Matrix<Self>
)

Loading content...

Implementations on Foreign Types

impl Trmm for f32[src]

impl Trmm for f64[src]

impl Trmm for Complex32[src]

impl Trmm for Complex64[src]

Loading content...

Implementors

Loading content...