average: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
mNo edit summary |
||
Line 2: | Line 2: | ||
|name=avg | |name=avg | ||
|description= | |description= | ||
Calculates the average (or mean) of all of the numbers that are passed in. The mean | |||
is equal to the sum of all the arguments divided by the number of arguments. | is equal to the sum of all the arguments divided by the number of arguments. | ||
Revision as of 07:25, 6 March 2019
avg() Function
Calculates the average (or mean) of all of the numbers that are passed in. The mean
is equal to the sum of all the arguments divided by the number of arguments.
Usage
[h: av = avg(num, num, ...)]
[h: av = average(num, num, ...)]
[h: av = mean(num, num, ...)]
Example
[r: avg(1, 2, 3, 3, 10)]