The POWA({ARRAY}, REAL) function returns a real array. The each element of the returned array equals base (second argument) raised to each element of the input array (first argument).
Format
POWA(array, base)
Arguments
array | Input array. |
base | Real number that will work as base value of power expression. |
Examples
POWA({0.0,1.0,2.0},2.0)
This function builder function will create array on fly with array values (1.0, 2.0, 4.0).