| 212 | } |
| 213 | |
| 214 | NPY_NO_EXPORT PyObject * |
| 215 | _PyArray_ArgMinWithKeepdims(PyArrayObject *op, |
| 216 | int axis, PyArrayObject *out, int keepdims) |
| 217 | { |
| 218 | return _PyArray_ArgMinMaxCommon(op, axis, out, keepdims, 0); |
| 219 | } |
| 220 | |
| 221 | /*NUMPY_API |
| 222 | * ArgMin |
no test coverage detected