GMean Function
Calculation of the geometric mean
Description
The function \(GMean\) returns the geometric mean of the available data.
The geometric mean is that mean calculated as the nth root from the product of the observed numbers (n).
For example, the two numbers 2 and 8 have the geometric mean 4
\(\sqrt{2ยท8}=4\)
Syntax
GMean (List)
Example
a=[3,6,7,8]
GMean(a)= 5.63