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

pub trait Symm: Sized {
    fn symm(
        side: Side,
        symmetry: Symmetry,
        alpha: &Self,
        a: &dyn Matrix<Self>,
        b: &dyn Matrix<Self>,
        beta: &Self,
        c: &mut dyn Matrix<Self>
    ); }

Required methods

fn symm(
    side: Side,
    symmetry: Symmetry,
    alpha: &Self,
    a: &dyn Matrix<Self>,
    b: &dyn Matrix<Self>,
    beta: &Self,
    c: &mut dyn Matrix<Self>
)

Loading content...

Implementations on Foreign Types

impl Symm for f32[src]

impl Symm for f64[src]

impl Symm for Complex32[src]

impl Symm for Complex64[src]

Loading content...

Implementors

Loading content...