Array functions
There are many functions to compute facts about arrays.
min(x), max(x), mean(x), ...
Basic operations on arrays are performed element-by-element. Example: function applications:
x = [4.2 7.89 2.4 -42.1 ]
An operation may involve an array and a scalar. The operation is performed on each element of the array and the result is an array of these values.