Version Ref: 6.1 (USP 6.1.01)
Syntax:
value = A_AVG(array [, array2 [, array3 [, ... [, arrayN]]]])
Find the avereage of all of the values in the passed in arrays.
Example:
array1["1"]="5"
array1["2"]="7"
array2["1"]="30"
value = A_AVG(array1, array2) ' value will contain "14"
Note: This method supports multi-dimensional arrays.