MV2¶
-
max(a, axis=None)[source]¶ Return the maximum along a given axis.
- Parameters
- axis{None, int}, optional
Axis along which to operate. By default,
axisis None and the flattened input is used.- outarray_like, optional
Alternative output array in which to place the result. Must be of the same shape and buffer length as the expected output.
- fill_value{var}, optional
Value used to fill in the masked values. If None, use the output of maximum_fill_value().
- Returns
- amaxarray_like
New array holding the result. If
outwas specified,outis returned.
See also
maximum_fill_valueReturns the maximum filling value for a given datatype.