SCALEA

The SCALEA(ARRAY, REAL) function returns a real array. The returned array is scaled input array and the scaling is done by real input argument at second place.

Format

SCALEA(array, scale)

Arguments

 
array
Input array.
scale
Scaling factor

Examples

SCALEA({0.0,1.0,2.0},3.0)
This function builder function will create array on fly with array values (0.0, 3.0, 6.0).