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.amax
The maximum value of an array along a given axis, propagating any NaNs.
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.
dpnp.argmin
Return the indices of the minimum values.
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.
Notes
This function works exactly the same as
dpnp.min
.