[][src]Trait rust_blas::matrix_vector::ops::Symv

pub trait Symv: Sized {
    fn symv<V: ?Sized + Vector<Self>, W: ?Sized + Vector<Self>>(
        symmetry: Symmetry,
        alpha: &Self,
        a: &dyn Matrix<Self>,
        x: &V,
        beta: &Self,
        y: &mut W
    ); }

Symmetric multiply with vector

A ← αAx + βy

Required methods

fn symv<V: ?Sized + Vector<Self>, W: ?Sized + Vector<Self>>(
    symmetry: Symmetry,
    alpha: &Self,
    a: &dyn Matrix<Self>,
    x: &V,
    beta: &Self,
    y: &mut W
)

Loading content...

Implementations on Foreign Types

impl Symv for f32[src]

impl Symv for f64[src]

impl Symv for Complex32[src]

impl Symv for Complex64[src]

Loading content...

Implementors

Loading content...