NUMPY_API * ArgMin */
| 222 | * ArgMin |
| 223 | */ |
| 224 | NPY_NO_EXPORT PyObject * |
| 225 | PyArray_ArgMin(PyArrayObject *op, int axis, PyArrayObject *out) |
| 226 | { |
| 227 | return _PyArray_ArgMinMaxCommon(op, axis, out, 0, 0); |
| 228 | } |
| 229 | |
| 230 | /*NUMPY_API |
| 231 | * Max |
nothing calls this directly
no test coverage detected