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

Prev:Vamax ( x -- max )
Next:n*V ( alpha x -- alpha*x )


Vocabulary
math.blas.vectors

Inputs
alphaa number
xa blas-vector-base


Outputs
x=alpha*xa blas-vector-base


Word description
Calculate the scalar-vector product αx and replace the existing contents of x with the result. Corresponds to the xSCAL routines in BLAS.

Side effects
Modifies x

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

Definition

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


Methods