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

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

Symmetric rank-1 update

A ← A + αxxT

Required Methods

fn syr<V: ?Sized + Vector<Self>>(symmetry: Symmetry, alpha: &Self, x: &V, a: &mut Matrix<Self>)

Implementors