MCPcopy Index your code
hub / github.com/numpy/numpy / amin

Function amin

numpy/_core/fromnumeric.py:3304–3317  ·  view source on GitHub ↗

Return the minimum of an array or minimum along an axis. `amin` is an alias of `~numpy.min`. See Also -------- min : alias of this function ndarray.min : equivalent method

(a, axis=None, out=None, keepdims=np._NoValue, initial=np._NoValue,
         where=np._NoValue)

Source from the content-addressed store, hash-verified

3302
3303@array_function_dispatch(_min_dispatcher)
3304def amin(a, axis=None, out=None, keepdims=np._NoValue, initial=np._NoValue,
3305 where=np._NoValue):
3306 """
3307 Return the minimum of an array or minimum along an axis.
3308
3309 `amin` is an alias of `~numpy.min`.
3310
3311 See Also
3312 --------
3313 min : alias of this function
3314 ndarray.min : equivalent method
3315 """
3316 return _wrapreduction(a, np.minimum, 'min', axis, None, out,
3317 keepdims=keepdims, initial=initial, where=where)
3318
3319
3320def _prod_dispatcher(a, axis=None, dtype=None, out=None, keepdims=None,

Callers

nothing calls this directly

Calls 1

_wrapreductionFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…