pub trait Tbmv: Sized {
    // Required method
    fn tbmv<V: ?Sized + Vector<Self>>(
        symmetry: Symmetry,
        trans: Transpose,
        diagonal: Diagonal,
        a: &dyn BandMatrix<Self>,
        x: &mut V
    );
}
Expand description

Triangular band matrix multiply with vector

A ← AOPx

Required Methods§

source

fn tbmv<V: ?Sized + Vector<Self>>( symmetry: Symmetry, trans: Transpose, diagonal: Diagonal, a: &dyn BandMatrix<Self>, x: &mut V )

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl Tbmv for f32

source§

fn tbmv<V: ?Sized + Vector<Self>>( symmetry: Symmetry, trans: Transpose, diagonal: Diagonal, a: &dyn BandMatrix<f32>, x: &mut V )

source§

impl Tbmv for f64

source§

fn tbmv<V: ?Sized + Vector<Self>>( symmetry: Symmetry, trans: Transpose, diagonal: Diagonal, a: &dyn BandMatrix<f64>, x: &mut V )

source§

impl Tbmv for Complex32

source§

fn tbmv<V: ?Sized + Vector<Self>>( symmetry: Symmetry, trans: Transpose, diagonal: Diagonal, a: &dyn BandMatrix<Complex32>, x: &mut V )

source§

impl Tbmv for Complex64

source§

fn tbmv<V: ?Sized + Vector<Self>>( symmetry: Symmetry, trans: Transpose, diagonal: Diagonal, a: &dyn BandMatrix<Complex64>, x: &mut V )

Implementors§