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

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

General multiply with vector

A ← αAOPx + βy

Required methods

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
)

Loading content...

Implementations on Foreign Types

impl Gemv for f32[src]

impl Gemv for f64[src]

impl Gemv for Complex32[src]

impl Gemv for Complex64[src]

Loading content...

Implementors

Loading content...