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

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

Solve triangular packed matrix system

A ← A-1 OPx

Required methods

Implementations on Foreign Types

Implementors