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

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

General rank-1 update (using hermitian conjugate)

A ← A + αxyH

Provided methods

fn gerc<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 Gerc for f32[src]

impl Gerc for f64[src]

impl Gerc for Complex32[src]

impl Gerc for Complex64[src]

Loading content...

Implementors

Loading content...