Difference between revisions of "TEAMean"
From SCAR Divi Manual
(Created page with "==Definition== <source lang="scar" lines="false"> function TEAMean(const TEA: TExtArray): Extended; </source> ==Availability== SCAR Divi 3.38 > Current ==Description== Retur...") |
|||
(One intermediate revision by the same user not shown) | |||
Line 6: | Line 6: | ||
==Availability== | ==Availability== | ||
SCAR Divi 3.38 > Current | SCAR Divi 3.38 > Current | ||
+ | |||
+ | ===Aliases=== | ||
+ | *Average (SCAR Divi 3.00 > 3.37) | ||
==Description== | ==Description== | ||
− | Returns the arithmetic mean of the [[extended]] values in the given [[TExtArray]] '''TEA'''. Throws an exception if '''TEA''' is empty. | + | Returns the [http://mathworld.wolfram.com/ArithmeticMean.html arithmetic mean] of the [[extended]] values in the given [[TExtArray]] '''TEA'''. Throws an exception if '''TEA''' is empty. |
==Example== | ==Example== |
Latest revision as of 15:47, 12 December 2012
Definition
function TEAMean(const TEA: TExtArray): Extended;
Availability
SCAR Divi 3.38 > Current
Aliases
- Average (SCAR Divi 3.00 > 3.37)
Description
Returns the arithmetic mean of the extended values in the given TExtArray TEA. Throws an exception if TEA is empty.
Example
var TEA: TExtArray; begin TEA := [1.2, 1.8, 5.3, 5.7]; WriteLn(TEAMean(TEA)); end.
Output:
3.5