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

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

General rank-1 update

A ← A + αxyT

Required Methods

fn ger<V: ?Sized + Vector<Self>, W: ?Sized + Vector<Self>>(alpha: &Self, x: &V, y: &W, a: &mut Matrix<Self>)

Implementors