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

pub trait Hpr: Sized {
    fn hpr<V: ?Sized + Vector<Complex<Self>>>(
        symmetry: Symmetry,
        alpha: &Self,
        x: &V,
        a: &mut dyn Matrix<Complex<Self>>
    ); }

Hermitian packed matrix rank-1 update

A ← A + αxxH

Required methods

fn hpr<V: ?Sized + Vector<Complex<Self>>>(
    symmetry: Symmetry,
    alpha: &Self,
    x: &V,
    a: &mut dyn Matrix<Complex<Self>>
)

Loading content...

Implementations on Foreign Types

impl Hpr for f32[src]

impl Hpr for f64[src]

Loading content...

Implementors

Loading content...