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 harmonic mean of the values in the passed array.
That is: n / (1/x1 + 1/x2 + ... + 1/xn)
Parameters: | a : array axis : int or None |
---|---|
Returns: | The harmonic mean computed over a single dimension of the input array or all : values in the array if axis=None. : |