The COSA({ARRAY}, REAL) function returns a real array. The elements of the returned array equals cosine of each element of the input array (first argument to the function) multiplied by a factor (second argument to the function).
Format
COSA(array, factor)
Arguments
array | Input array. |
factor | Real number to multiply array. |
Examples
COSA({0,30,60},2)
This function builder function will create array on fly with array values (2.0, 1.732, 1.0).