Trait rust_blas::matrix::ops::Trmm

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

Required Methods§

source

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

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl Trmm for f32

source§

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

source§

impl Trmm for f64

source§

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

source§

impl Trmm for Complex32

source§

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

source§

impl Trmm for Complex64

source§

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

Implementors§