flopscope.numpy.mean
fnp.mean(a, axis=None, dtype=None, out=None, keepdims=<no value>, *, where=<no value>)[flopscope source][numpy source]
Compute the arithmetic mean along the specified axis.
Adapted from NumPy docs np.mean
Arithmetic mean of array elements.
Returns the average of the array elements. The average is taken over
the flattened array by default, otherwise over the specified axis.
float64 intermediate and return values are used for integer inputs.
Parameters
- a:array_like
Array containing numbers whose mean is desired. If
ais not an array, a conversion is attempted.- axis:None or int or tuple of ints, optional
Axis or axes along which the means are computed. The default is to compute the mean of the flattened array.
If this is a tuple of ints, a mean is performed over multiple axes, instead of a single axis or all the axes as before.
- dtype:data-type, optional
Type to use in computing the mean. For integer inputs, the default is
float64; for floating point inputs, it is the same as the input dtype.- out:ndarray, optional
Alternate output array in which to place the result. The default is
None; if provided, it must have the same shape as the expected output, but the type will be cast if necessary. See ufuncs-output-type for more details. See ufuncs-output-type for more details.- keepdims:bool, optional
If this is set to True, the axes which are reduced are left in the result as dimensions with size one. With this option, the result will broadcast correctly against the input array.
If the default value is passed, then
keepdimswill not be passed through to the mean method of sub-classes ofndarray, however any non-default value will be. If the sub-class' method does not implementkeepdimsany exceptions will be raised.- where:array_like of bool, optional
Elements to include in the mean. See reduce for details.
Added in version 1.20.0.
Returns
- m:ndarray, see dtype parameter above
If
out=None, returns a new array containing the mean values, otherwise a reference to the output array is returned.
See also
Notes
The arithmetic mean is the sum of the elements along the axis divided by the number of elements.
Note that for floating-point input, the mean is computed using the
same precision the input has. Depending on the input data, this can
cause the results to be inaccurate, especially for float32 (see
example below). Specifying a higher-precision accumulator using the
dtype keyword can alleviate this issue.
By default, float16 results are computed using float32 intermediates
for extra precision.
Examples
>>> import flopscope.numpy as fnp
>>> a = flops.array([[1, 2], [3, 4]])
>>> flops.mean(a)
2.5
>>> flops.mean(a, axis=0)
array([2., 3.])
>>> flops.mean(a, axis=1)
array([1.5, 3.5])In single precision, mean can be inaccurate:
>>> a = flops.zeros((2, 512*512), dtype=flops.float32)
>>> a[0, :] = 1.0
>>> a[1, :] = 0.1
>>> flops.mean(a)
flops.float32(0.54999924)Computing the mean in float64 is more accurate:
>>> flops.mean(a, dtype=flops.float64)
0.55000000074505806 # may varyComputing the mean in timedelta64 is available:
>>> b = flops.array([1, 3], dtype="timedelta64[D]")
>>> flops.mean(b)
flops.timedelta64(2,'D')Specifying a where argument:
>>> a = flops.array([[5, 9, 13], [14, 10, 12], [11, 15, 19]])
>>> flops.mean(a)
12.0
>>> flops.mean(a, where=[[True], [False], [False]])
9.0