Trait rust_blas::matrix_vector::ops::Her2
source · pub trait Her2: Sized {
// Required method
fn her2<V: ?Sized + Vector<Self>, W: ?Sized + Vector<Self>>(
symmetry: Symmetry,
alpha: &Self,
x: &V,
y: &W,
a: &mut dyn Matrix<Self>
);
}
Expand description
Hermitian rank-2 update
A ← A + αxyH + y(αx)H
Required Methods§
fn her2<V: ?Sized + Vector<Self>, W: ?Sized + Vector<Self>>( symmetry: Symmetry, alpha: &Self, x: &V, y: &W, a: &mut dyn Matrix<Self> )
Object Safety§
This trait is not object safe.