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)
| 3302 | |
| 3303 | @array_function_dispatch(_min_dispatcher) |
| 3304 | def 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 | |
| 3320 | def _prod_dispatcher(a, axis=None, dtype=None, out=None, keepdims=None, |
nothing calls this directly
no test coverage detected
searching dependent graphs…