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

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

Solve triangular band matrix system

A ← A-1 OPx

Required methods

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

Loading content...

Implementations on Foreign Types

impl Tbsv for f32[src]

impl Tbsv for f64[src]

impl Tbsv for Complex32[src]

impl Tbsv for Complex64[src]

Loading content...

Implementors

Loading content...