Trait Gerc

Source
pub trait Gerc: Ger {
    // Provided method
    fn gerc<V: ?Sized + Vector<Self>, W: ?Sized + Vector<Self>>(
        alpha: &Self,
        x: &V,
        y: &W,
        a: &mut dyn Matrix<Self>,
    ) { ... }
}
Expand description

General rank-1 update (using hermitian conjugate)

A ← A + αxyH

Provided Methods§

Source

fn gerc<V: ?Sized + Vector<Self>, W: ?Sized + Vector<Self>>( alpha: &Self, x: &V, y: &W, a: &mut dyn Matrix<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 Gerc for f32

Source§

impl Gerc for f64

Source§

impl Gerc for Complex32

Source§

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

Source§

impl Gerc for Complex64

Source§

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

Implementors§