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

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

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

Implementors