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

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

Symmetric band matrix multiply with vector

A ← αAx + βy

Required methods

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

Loading content...

Implementations on Foreign Types

impl Sbmv for f32[src]

impl Sbmv for f64[src]

Loading content...

Implementors

Loading content...