tuple_mean🔗
Short description🔗
tuple_mean — Return the mean value of a tuple of numbers.
Signature🔗
tuple_mean( number Tuple, out number Mean )
Description🔗
tuple_mean returns the mean value of all elements
of the input tuple Tuple as a floating point
number in the output parameter Mean. The input tuple
may only consist of numbers (integer or floating point numbers).
Exception: Empty input tuple🔗
If the input tuple is empty, an exception is raised.
HDevelop In-line Operation🔗
HDevelop provides an in-line operation for tuple_mean,
which can be used in an expression in the following syntax:
Mean := mean(Tuple)
Execution information🔗
Execution information
-
Multithreading type: reentrant (runs in parallel with non-exclusive operators).
-
Multithreading scope: global (may be called from any thread).
-
Processed without parallelization.
Parameters🔗
Tuple (input_control) number(-array) → (integer / real)
Input tuple.
Mean (output_control) number → (real)
Mean value of tuple elements.
Combinations with other operators🔗
Combinations
Alternatives
tuple_deviation, tuple_sum, tuple_min, tuple_max, tuple_length, tuple_median
Module🔗
Foundation