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

pub trait Hpr2: Sized {
    fn hpr2<V: ?Sized + Vector<Self>, W: ?Sized + Vector<Self>>(
        symmetry: Symmetry,
        alpha: &Self,
        x: &V,
        y: &W,
        a: &mut dyn Matrix<Self>
    ); }

Hermitian packed matrix rank-2 update

A ← A + αxyH + y(αx)H

Required methods

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

Loading content...

Implementations on Foreign Types

impl Hpr2 for Complex32[src]

impl Hpr2 for Complex64[src]

Loading content...

Implementors

Loading content...