This is documentation for an old release of SciPy (version 0.7.). Read this page in the documentation of the latest stable release (version 1.15.1).
Calculates the geometric mean of the values in the passed array.
That is: n-th root of (x1 * x2 * ... * xn)
Parameters: | a : array of positive values axis : int or None zero_sub : value to substitute for zero values. Default is 0. |
---|---|
Returns: | The geometric mean computed over a single dimension of the input array or : all values in the array if axis==None. : |