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

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

Solve triangular band matrix system

A ← A-1 OPx

Required methods

Implementations on Foreign Types

Implementors