pub trait Tbsv: Sized {
    // Required method
    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§

source

fn tbsv<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 Tbsv for f32

source§

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

source§

impl Tbsv for f64

source§

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

source§

impl Tbsv for Complex32

source§

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

source§

impl Tbsv for Complex64

source§

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

Implementors§