Trait rblas::matrix_vector::ops::Sbmv [] [src]

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

Symmetric band matrix multiply with vector

A ← αAx + βy

Required Methods

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

Implementors