Trait rust_blas::matrix_vector::ops::Spr2
source · pub trait Spr2: Sized {
// Required method
fn spr2<V: ?Sized + Vector<Self>, W: ?Sized + Vector<Self>>(
symmetry: Symmetry,
alpha: &Self,
x: &V,
y: &W,
a: &mut dyn Matrix<Self>
);
}
Expand description
Symmetric packed matrix rank-2 update
A ← A + αxyT + αyxT
Required Methods§
fn spr2<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.