ArrayAvg()

Determines the average value of the array of numbers. Errors if any element is a non-numeric

Usage

NUMERIC = ArrayAvg( array )
Argument Summary
array Array Object or XML object

Calling

Supports named-parameter calling allowing you to use the function like:

ArrayAvg(
   array=?
);

Supports passing parameters as a structure using ArgumentCollection:

ArrayAvg( ArgumentCollection={
   array : ?
} );