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

pub trait Syrk: Sized {
    fn syrk(
        symmetry: Symmetry,
        trans: Transpose,
        alpha: &Self,
        a: &dyn Matrix<Self>,
        beta: &Self,
        c: &mut dyn Matrix<Self>
    ); }

Required methods

fn syrk(
    symmetry: Symmetry,
    trans: Transpose,
    alpha: &Self,
    a: &dyn Matrix<Self>,
    beta: &Self,
    c: &mut dyn Matrix<Self>
)

Loading content...

Implementations on Foreign Types

impl Syrk for f32[src]

impl Syrk for f64[src]

impl Syrk for Complex32[src]

impl Syrk for Complex64[src]

Loading content...

Implementors

Loading content...