pub trait Tpmv: Sized {
    // Required method
    fn tpmv<V: ?Sized + Vector<Self>>(
        symmetry: Symmetry,
        trans: Transpose,
        diagonal: Diagonal,
        a: &dyn Matrix<Self>,
        x: &mut V
    );
}
Expand description

Triangular packed matrix multiply with vector

A ← AOPx

Required Methods§

source

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

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl Tpmv for f32

source§

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

source§

impl Tpmv for f64

source§

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

source§

impl Tpmv for Complex32

source§

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

source§

impl Tpmv for Complex64

source§

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

Implementors§