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

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

General rank-1 update

A ← A + αxyT

Required methods

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

Loading content...

Implementations on Foreign Types

impl Ger for f32[src]

impl Ger for f64[src]

impl Ger for Complex32[src]

impl Ger for Complex64[src]

Loading content...

Implementors

Loading content...