TEAMean

From SCAR Divi Manual
Jump to: navigation, search

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

See Also