Collapse axes with their mid range.
The mid range is the mean of the maximum and minimum.
d.mid_range() is equivalent to 0.5*(d.max() + d.min()).
Missing data array elements are omitted from the calculation.
Parameters : | axes : (sequence of) int, optional squeeze : bool, optional
|
---|---|
Returns : |
|
Examples