pub trait Gemv: Sized {
// Required method
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§
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, )
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.