Her

Trait Her 

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

Hermitian rank-1 update

A ← A + αxxH

Required Methods§

Source

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

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl Her for f32

Source§

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

Source§

impl Her for f64

Source§

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

Implementors§