Trait nalgebra::Axpy [] [src]

pub trait Axpy<N> {
    fn axpy(&mut self, a: &N, x: &Self);
}

Trait of objects implementing the y = ax + y operation.

Required Methods

fn axpy(&mut self, a: &N, x: &Self)

Adds $$a * x$$ to self.

Implementors