average

From RPTools Wiki
Revision as of 17:01, 14 March 2023 by Taustin (talk | contribs) (Text replacement - "source>" to "syntaxhighlight>")
Jump to navigation Jump to search

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

<source lang="mtmacro" line> [h: av = avg(num, num, ...)] [h: av = average(num, num, ...)] [h: av = mean(num, num, ...)] </syntaxhighlight>

Example

<source lang="mtmacro" line>

[r: avg(1, 2, 3, 3, 10)] </syntaxhighlight>

Returns 3.8