MCPcopy Create free account
hub / github.com/numpy/numpy / PyArray_ArgMax

Function PyArray_ArgMax

numpy/core/src/multiarray/calculation.c:208–212  ·  view source on GitHub ↗

NUMPY_API * ArgMax */

Source from the content-addressed store, hash-verified

206 * ArgMax
207 */
208NPY_NO_EXPORT PyObject *
209PyArray_ArgMax(PyArrayObject *op, int axis, PyArrayObject *out)
210{
211 return _PyArray_ArgMinMaxCommon(op, axis, out, 0, 1);
212}
213
214NPY_NO_EXPORT PyObject *
215_PyArray_ArgMinWithKeepdims(PyArrayObject *op,

Callers

nothing calls this directly

Calls 1

_PyArray_ArgMinMaxCommonFunction · 0.85

Tested by

no test coverage detected