pub trait Ger: Sized {
    // Required method
    fn ger<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

A ← A + αxyT

Required Methods§

source

fn ger<V: ?Sized + Vector<Self>, W: ?Sized + Vector<Self>>( 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 Ger for f32

source§

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

source§

impl Ger for f64

source§

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

source§

impl Ger for Complex32

source§

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

source§

impl Ger for Complex64

source§

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

Implementors§