pub trait Ger: Sized {
// Required method
fn ger<V: ?Sized + Vector<Self>, W: ?Sized + Vector<Self>>(
alpha: &Self,
x: &V,
y: &W,
a: &mut dyn Matrix<Self>,
);
}
Expand description
General rank-1 update
A ← A + αxyT
Required Methods§
fn ger<V: ?Sized + Vector<Self>, W: ?Sized + Vector<Self>>( alpha: &Self, x: &V, y: &W, a: &mut dyn Matrix<Self>, )
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.