Trmm

Trait 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>, )

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so 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§