numpy 2.0.0
|
Go to the source code of this file.
Functions | |
NPY_NO_EXPORT PyObject * | PyArray_ArgMax (PyArrayObject *self, int axis, PyArrayObject *out) |
NPY_NO_EXPORT PyObject * | PyArray_ArgMin (PyArrayObject *self, int axis, PyArrayObject *out) |
NPY_NO_EXPORT PyObject * | PyArray_Max (PyArrayObject *self, int axis, PyArrayObject *out) |
NPY_NO_EXPORT PyObject * | PyArray_Min (PyArrayObject *self, int axis, PyArrayObject *out) |
NPY_NO_EXPORT PyObject * | PyArray_Ptp (PyArrayObject *self, int axis, PyArrayObject *out) |
NPY_NO_EXPORT PyObject * | PyArray_Mean (PyArrayObject *self, int axis, int rtype, PyArrayObject *out) |
NPY_NO_EXPORT PyObject * | PyArray_Round (PyArrayObject *a, int decimals, PyArrayObject *out) |
NPY_NO_EXPORT PyObject * | PyArray_Trace (PyArrayObject *self, int offset, int axis1, int axis2, int rtype, PyArrayObject *out) |
NPY_NO_EXPORT PyObject * | PyArray_Clip (PyArrayObject *self, PyObject *min, PyObject *max, PyArrayObject *out) |
NPY_NO_EXPORT PyObject * | PyArray_Conjugate (PyArrayObject *self, PyArrayObject *out) |
NPY_NO_EXPORT PyObject * | PyArray_Std (PyArrayObject *self, int axis, int rtype, PyArrayObject *out, int variance) |
NPY_NO_EXPORT PyObject * | __New_PyArray_Std (PyArrayObject *self, int axis, int rtype, PyArrayObject *out, int variance, int num) |
NPY_NO_EXPORT PyObject * | PyArray_Sum (PyArrayObject *self, int axis, int rtype, PyArrayObject *out) |
NPY_NO_EXPORT PyObject * | PyArray_CumSum (PyArrayObject *self, int axis, int rtype, PyArrayObject *out) |
NPY_NO_EXPORT PyObject * | PyArray_Prod (PyArrayObject *self, int axis, int rtype, PyArrayObject *out) |
NPY_NO_EXPORT PyObject * | PyArray_CumProd (PyArrayObject *self, int axis, int rtype, PyArrayObject *out) |
NPY_NO_EXPORT PyObject * | PyArray_All (PyArrayObject *self, int axis, PyArrayObject *out) |
NPY_NO_EXPORT PyObject * | PyArray_Any (PyArrayObject *self, int axis, PyArrayObject *out) |
NPY_NO_EXPORT PyObject* __New_PyArray_Std | ( | PyArrayObject * | self, |
int | axis, | ||
int | rtype, | ||
PyArrayObject * | out, | ||
int | variance, | ||
int | num | ||
) |
Referenced by array_cumsum().
NPY_NO_EXPORT PyObject* PyArray_All | ( | PyArrayObject * | self, |
int | axis, | ||
PyArrayObject * | out | ||
) |
NPY_NO_EXPORT PyObject* PyArray_Any | ( | PyArrayObject * | self, |
int | axis, | ||
PyArrayObject * | out | ||
) |
NPY_NO_EXPORT PyObject* PyArray_ArgMax | ( | PyArrayObject * | op, |
int | axis, | ||
PyArrayObject * | out | ||
) |
References PyArray_ArrFuncs::argmax, PyArrayObject::base, PyArrayObject::data, PyArrayObject::descr, PyArrayObject::dimensions, _PyArray_Descr::elsize, _PyArray_Descr::f, PyArray_Dims::len, MAX_DIMS, PyArrayObject::nd, NPY_ARRAY_CARRAY, NPY_ARRAY_UPDATEIFCOPY, NPY_BEGIN_THREADS_DEF, NPY_BEGIN_THREADS_DESCR, NPY_END_THREADS_DESCR, PyArray_Dims::ptr, Py_TYPE, PyArray_CheckAxis(), PyArray_ContiguousFromAny, PyArray_DescrFromType(), PyArray_FromArray(), PyArray_INTP, PyArray_MultiplyList(), PyArray_New(), PyArray_SIZE, PyArray_Transpose(), and _PyArray_Descr::type_num.
NPY_NO_EXPORT PyObject* PyArray_ArgMin | ( | PyArrayObject * | ap, |
int | axis, | ||
PyArrayObject * | out | ||
) |
NPY_NO_EXPORT PyObject* PyArray_Clip | ( | PyArrayObject * | self, |
PyObject * | min, | ||
PyObject * | max, | ||
PyArrayObject * | out | ||
) |
References _slow_array_clip(), _PyArray_Descr::f, PyArray_ArrFuncs::fastclip, and PyArray_PromoteTypes().
NPY_NO_EXPORT PyObject* PyArray_Conjugate | ( | PyArrayObject * | self, |
PyArrayObject * | out | ||
) |
NPY_NO_EXPORT PyObject* PyArray_CumProd | ( | PyArrayObject * | self, |
int | axis, | ||
int | rtype, | ||
PyArrayObject * | out | ||
) |
NPY_NO_EXPORT PyObject* PyArray_CumSum | ( | PyArrayObject * | self, |
int | axis, | ||
int | rtype, | ||
PyArrayObject * | out | ||
) |
NPY_NO_EXPORT PyObject* PyArray_Max | ( | PyArrayObject * | ap, |
int | axis, | ||
PyArrayObject * | out | ||
) |
NPY_NO_EXPORT PyObject* PyArray_Mean | ( | PyArrayObject * | self, |
int | axis, | ||
int | rtype, | ||
PyArrayObject * | out | ||
) |
NPY_NO_EXPORT PyObject* PyArray_Min | ( | PyArrayObject * | ap, |
int | axis, | ||
PyArrayObject * | out | ||
) |
NPY_NO_EXPORT PyObject* PyArray_Prod | ( | PyArrayObject * | self, |
int | axis, | ||
int | rtype, | ||
PyArrayObject * | out | ||
) |
References NumericOps::multiply, n_ops, PyArray_CheckAxis(), and PyArray_GenericAccumulateFunction().
NPY_NO_EXPORT PyObject* PyArray_Ptp | ( | PyArrayObject * | ap, |
int | axis, | ||
PyArrayObject * | out | ||
) |
NPY_NO_EXPORT PyObject* PyArray_Round | ( | PyArrayObject * | a, |
int | decimals, | ||
PyArrayObject * | out | ||
) |
NPY_NO_EXPORT PyObject* PyArray_Std | ( | PyArrayObject * | self, |
int | axis, | ||
int | rtype, | ||
PyArrayObject * | out, | ||
int | variance | ||
) |
NPY_NO_EXPORT PyObject* PyArray_Sum | ( | PyArrayObject * | self, |
int | axis, | ||
int | rtype, | ||
PyArrayObject * | out | ||
) |
NPY_NO_EXPORT PyObject* PyArray_Trace | ( | PyArrayObject * | self, |
int | offset, | ||
int | axis1, | ||
int | axis2, | ||
int | rtype, | ||
PyArrayObject * | out | ||
) |