method
ma.masked_array.
max
Return the maximum along a given axis.
Axis along which to operate. By default, axis is None and the flattened input is used.
axis
Alternative output array in which to place the result. Must be of the same shape and buffer length as the expected output.
Value used to fill in the masked values. If None, use the output of maximum_fill_value().
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 array.
New array holding the result. If out was specified, out is returned.
out
See also
ma.maximum_fill_value
Returns the maximum filling value for a given datatype.