Function mean( values, ... )
- Description:
-
Returns the mean of all the non-blank supplied arguments.
- Parameters:
-
- values (floating point, one or more)
- one or more numeric values
- Return Value (floating point):
- mean of
values
- Examples:
mean(2, 4, 6, 8) = 5
mean(100.5, 99.5, NaN) = 100
- Signature:
- double mean(double...)