Average Math

From Catglobe Wiki
Revision as of 09:26, 2 February 2012 by Cg pham (talk | contribs) (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...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

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