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

pub trait Hemv: Sized {
    fn hemv<V: ?Sized + Vector<Self>, W: ?Sized + Vector<Self>>(
        symmetry: Symmetry,
        alpha: &Self,
        a: &dyn Matrix<Self>,
        x: &V,
        beta: &Self,
        y: &mut W
    ); }

Hermitian multiply with vector

A ← αAx + βy

Required methods

fn hemv<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 Hemv for Complex32[src]

impl Hemv for Complex64[src]

Loading content...

Implementors

Loading content...