Trait rblas::matrix_vector::ops::Spr2 [] [src]

pub trait Spr2: Sized {
    fn spr2<V: ?Sized + Vector<Self>, W: ?Sized + Vector<Self>>(symmetry: Symmetry, alpha: &Self, x: &V, y: &W, a: &mut Matrix<Self>);
}

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 Matrix<Self>)

Implementors