Difference between revisions of "Average Math"

From Catglobe Wiki
Jump to: navigation, search
(Created page with "===average=== Gets numeric values of all the parameters and returns the average value of them. The values of all parameters must be convertible to numbers. Syntax average(exp1...")
 
(No difference)

Latest revision as of 08:26, 2 February 2012

average

Gets numeric values of all the parameters and returns the average value of them. The values of all parameters must be convertible to numbers.

Syntax

average(exp1, exp2, exp3, …)

Arguments

expi: Is an expression of any type

Return type

number

Examples

number a = average(1, 2, 3, 4, 5);

//a = 3

number a = average(1, "3");

//a = 2

Availability

Version 4.8