n*V+V! ( alpha x y -- y=alpha*x+y )
Basic Linear Algebra Subroutines (BLAS) interface » BLAS interface vector operations

Prev:Vneg ( x -- -x )
Next:n*V+V ( alpha x y -- alpha*x+y )


Vocabulary
math.blas.vectors

Inputs
alphaa number
xa blas-vector-base
ya blas-vector-base


Outputs
y=alpha*x+ya blas-vector-base


Word description
Calculate the vector sum αx + y and replace the existing contents of y with the result. Corresponds to the xAXPY routines in BLAS.

Side effects
Modifies y

See also
n*V!, n*V+V, n*V, V+, V-, Vneg, V*n, V/n

Definition

GENERIC: n*V+V! ( alpha x y -- y=alpha*x+y )


Methods