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

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

Hermitian packed matrix rank-1 update

A ← A + αxxH

Required Methods

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

Implementors