Trait rust_blas::matrix_vector::ops::Tpsv
source · pub trait Tpsv: Sized {
// Required method
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§
fn tpsv<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.