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

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

Hermitian rank-2 update

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

Required methods

fn her2<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 Her2 for Complex32[src]

impl Her2 for Complex64[src]

Loading content...

Implementors

Loading content...