Trait rust_blas::matrix_vector::ops::Hbmv
source · pub trait Hbmv: Sized {
// Required method
fn hbmv<V: ?Sized + Vector<Self>, W: ?Sized + Vector<Self>>(
symmetry: Symmetry,
alpha: &Self,
a: &dyn BandMatrix<Self>,
x: &V,
beta: &Self,
y: &mut W
);
}
Expand description
Hermitian band matrix multiply with vector
A ← αAx + βy
Required Methods§
fn hbmv<V: ?Sized + Vector<Self>, W: ?Sized + Vector<Self>>( symmetry: Symmetry, alpha: &Self, a: &dyn BandMatrix<Self>, x: &V, beta: &Self, y: &mut W )
Object Safety§
This trait is not object safe.