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.aminThe minimum value of an array along a given axis, propagating any NaNs.
dpnp.nanmaxThe maximum value of an array along a given axis, ignoring any NaNs.
dpnp.maximumElement-wise maximum of two arrays, propagating any NaNs.
dpnp.fmaxElement-wise maximum of two arrays, ignoring any NaNs.
dpnp.argmaxReturn the indices of the maximum values.
dpnp.nanminReturn minimum of an array or minimum along an axis, ignoring any NaNs.
dpnp.minimumElement-wise minimum of array elements.
dpnp.fminElement-wise minimum of array elements.
Notes
This function works exactly the same as
dpnp.max.