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

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

Hermitian rank-1 update

A ← A + αxxH

Required methods

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

Loading content...

Implementations on Foreign Types

impl Her for f32[src]

impl Her for f64[src]

Loading content...

Implementors

Loading content...