dpnp.amin
- dpnp.amin(input, axis=None, out=None)[source]
Return the minimum of an array or minimum along an axis.
For full documentation refer to
numpy.amin.See also
dpnp.amaxThe maximum value of an array along a given axis, propagating any NaNs.
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.
dpnp.argminReturn the indices of the minimum values.
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.
Notes
This function works exactly the same as
dpnp.min.