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

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

General rank-1 update (using hermitian conjugate)

A ← A + αxyH

Provided Methods

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

Implementors