Trait nalgebra::Axpy [] [src]

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

Operation that combines scalar multiplication and vector addition.

Required Methods

Computes self = a * x + self.

Implementors