Trait rust_blas::matrix_vector::ops::Spr
source · pub trait Spr: Sized {
// Required method
fn spr<V: ?Sized + Vector<Self>>(
symmetry: Symmetry,
alpha: &Self,
x: &V,
a: &mut dyn Matrix<Self>
);
}
Expand description
Symmetric packed matrix rank-1 update
A ← A + αxxT
Required Methods§
fn spr<V: ?Sized + Vector<Self>>( symmetry: Symmetry, alpha: &Self, x: &V, a: &mut dyn Matrix<Self> )
Object Safety§
This trait is not object safe.