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

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

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
)

Loading content...

Implementations on Foreign Types

impl Tpsv for f32[src]

impl Tpsv for f64[src]

impl Tpsv for Complex32[src]

impl Tpsv for Complex64[src]

Loading content...

Implementors

Loading content...