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

pub trait Hpmv: Sized {
    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
    ); }

Hermitian packed matrix multiply with vector

A ← αAx + βy

Required methods

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
)

Loading content...

Implementations on Foreign Types

impl Hpmv for Complex32[src]

impl Hpmv for Complex64[src]

Loading content...

Implementors

Loading content...