Gbmv

Trait Gbmv 

Source
pub trait Gbmv: Sized {
    // Required method
    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,
    );
}
Expand description

General band matrix multiply with vector.

A ← αAOPx + βy

Required Methods§

Source

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, )

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl Gbmv for f32

Source§

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

Source§

impl Gbmv for f64

Source§

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

Source§

impl Gbmv for Complex32

Source§

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

Source§

impl Gbmv for Complex64

Source§

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

Implementors§