dpnp.amax

dpnp.amax(input, axis=None, out=None)[source]

Return the maximum of an array or maximum along an axis.

For full documentation refer to numpy.amax.

See also

dpnp.amin

The minimum value of an array along a given axis, propagating any NaNs.

dpnp.nanmax

The maximum value of an array along a given axis, ignoring any NaNs.

dpnp.maximum

Element-wise maximum of two arrays, propagating any NaNs.

dpnp.fmax

Element-wise maximum of two arrays, ignoring any NaNs.

dpnp.argmax

Return the indices of the maximum values.

dpnp.nanmin

Return minimum of an array or minimum along an axis, ignoring any NaNs.

dpnp.minimum

Element-wise minimum of array elements.

dpnp.fmin

Element-wise minimum of array elements.

Notes

This function works exactly the same as dpnp.max.