Trait Tbmv

Source
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, )

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so 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§