pub trait Hpmv: Sized {
    // Required method
    fn hpmv<V: ?Sized + Vector<Self>, W: ?Sized + Vector<Self>>(
        symmetry: Symmetry,
        alpha: &Self,
        a: &dyn Matrix<Self>,
        x: &V,
        beta: &Self,
        y: &mut W
    );
}
Expand description

Hermitian packed matrix multiply with vector

A ← αAx + βy

Required Methods§

source

fn hpmv<V: ?Sized + Vector<Self>, W: ?Sized + Vector<Self>>( symmetry: Symmetry, alpha: &Self, a: &dyn Matrix<Self>, x: &V, beta: &Self, y: &mut W )

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl Hpmv for Complex32

source§

fn hpmv<V: ?Sized + Vector<Self>, W: ?Sized + Vector<Self>>( symmetry: Symmetry, alpha: &Complex32, a: &dyn Matrix<Complex32>, x: &V, beta: &Complex32, y: &mut W )

source§

impl Hpmv for Complex64

source§

fn hpmv<V: ?Sized + Vector<Self>, W: ?Sized + Vector<Self>>( symmetry: Symmetry, alpha: &Complex64, a: &dyn Matrix<Complex64>, x: &V, beta: &Complex64, y: &mut W )

Implementors§