pub trait Her2: Sized {
    // Required method
    fn her2<V: ?Sized + Vector<Self>, W: ?Sized + Vector<Self>>(
        symmetry: Symmetry,
        alpha: &Self,
        x: &V,
        y: &W,
        a: &mut dyn Matrix<Self>
    );
}
Expand description

Hermitian rank-2 update

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

Required Methods§

source

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

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl Her2 for Complex32

source§

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

source§

impl Her2 for Complex64

source§

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

Implementors§