numpy.amin()
numpy.amin
-
numpy.amin(a, axis=None, out=None, keepdims=False)
[source] -
Return the minimum of an array or minimum along an axis.
Parameters: a : array_like
Input data.
axis : None or int or tuple of ints, optional
Axis or axes along which to operate. By default, flattened input is used.
If this is a tuple of ints, the minimum is selected over multiple axes, instead of a single axis or all the axes as before.