Trait rust_blas::matrix::ops::Trsm

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

Required Methods§

source

fn trsm( 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 Trsm for Complex32

source§

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

source§

impl Trsm for Complex64

source§

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

Implementors§