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

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

Hermitian packed matrix rank-1 update

A ← A + αxxH

Required methods

Implementations on Foreign Types

Implementors