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

pub trait Gemv: Sized {
    fn gemv<V: ?Sized + Vector<Self>, W: ?Sized + Vector<Self>>(
        trans: Transpose,
        alpha: &Self,
        a: &dyn Matrix<Self>,
        x: &V,
        beta: &Self,
        y: &mut W
    ); }
Expand description

General multiply with vector

A ← αAOPx + βy

Required methods

Implementations on Foreign Types

Implementors