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

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

Required methods

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

Loading content...

Implementations on Foreign Types

impl Syr2k for f32[src]

impl Syr2k for f64[src]

impl Syr2k for Complex32[src]

impl Syr2k for Complex64[src]

Loading content...

Implementors

Loading content...