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

Function PyArray_ArgMin

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

NUMPY_API * ArgMin */

Source from the content-addressed store, hash-verified

222 * ArgMin
223 */
224NPY_NO_EXPORT PyObject *
225PyArray_ArgMin(PyArrayObject *op, int axis, PyArrayObject *out)
226{
227 return _PyArray_ArgMinMaxCommon(op, axis, out, 0, 0);
228}
229
230/*NUMPY_API
231 * Max

Callers

nothing calls this directly

Calls 1

_PyArray_ArgMinMaxCommonFunction · 0.85

Tested by

no test coverage detected