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

pub trait Gbmv: Sized {
    fn gbmv<V: ?Sized + Vector<Self>, W: ?Sized + Vector<Self>>(
        trans: Transpose,
        alpha: &Self,
        a: &dyn BandMatrix<Self>,
        x: &V,
        beta: &Self,
        y: &mut W
    ); }

General band matrix multiply with vector.

A ← αAOPx + βy

Required methods

fn gbmv<V: ?Sized + Vector<Self>, W: ?Sized + Vector<Self>>(
    trans: Transpose,
    alpha: &Self,
    a: &dyn BandMatrix<Self>,
    x: &V,
    beta: &Self,
    y: &mut W
)

Loading content...

Implementations on Foreign Types

impl Gbmv for f32[src]

impl Gbmv for f64[src]

impl Gbmv for Complex32[src]

impl Gbmv for Complex64[src]

Loading content...

Implementors

Loading content...