Average Math

From Catglobe Wiki
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