Trait rust_blas::matrix_vector::ops::Gerc
source · pub trait Gerc: Ger {
// Provided method
fn gerc<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 (using hermitian conjugate)
A ← A + αxyH
Provided Methods§
fn gerc<V: ?Sized + Vector<Self>, W: ?Sized + Vector<Self>>( alpha: &Self, x: &V, y: &W, a: &mut dyn Matrix<Self> )
Object Safety§
This trait is not object safe.