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

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
    ); }
Expand description

Symmetric multiply with vector

A ← αAx + βy

Required methods

Implementations on Foreign Types

Implementors