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

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

Triangular band matrix multiply with vector

A ← AOPx

Required methods

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

Loading content...

Implementations on Foreign Types

impl Tbmv for f32[src]

impl Tbmv for f64[src]

impl Tbmv for Complex32[src]

impl Tbmv for Complex64[src]

Loading content...

Implementors

Loading content...