Trsm

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

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 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§