summaryrefslogtreecommitdiff
path: root/numpy/core/src/multiarray/calculation.c
Commit message (Expand)AuthorAgeFilesLines
* ENH: Add support for argmin and argmax for NEP42 dtypespdmurray2023-03-071-6/+11
* DEP: remove NPY_ARRAY_UPDATEIFCOPY, deprecated in 1.14 (#20589)Matti Picus2021-12-181-1/+1
* STY: Small cleanups of includes in *.c files.Charles Harris2021-09-031-2/+3
* MAIN: Minor include rationalization.Charles Harris2021-09-031-1/+1
* error formatting doneczgdp18072021-07-101-5/+9
* factored out _PyArray_ArgMinMaxCommonczgdp18072021-07-091-142/+20
* ENH: Adding keepdims to np.argmin,np.argmax (#19211)Gagandeep Singh2021-07-071-15/+88
* BUG: fix ValueError in PyArray_Std on win_amd64Christoph Gohlke2021-05-131-1/+1
* Update numpy/core/src/multiarray/calculation.cSebastian Berg2021-03-181-1/+2
* MAINT: Do not claim input to binops is `self` (array object)Sebastian Berg2021-03-101-2/+2
* MAINT: Replace PyInt macros with their PyLong replacementEric Wieser2020-08-241-2/+2
* MAINT: Remove duplicate deprecation of fastclipSebastian Berg2020-01-151-8/+9
* MAINT: Cleanup most PY3K #ifdef guardsSeth Troisi2020-01-071-4/+0
* ENH/DEP: Use a ufunc under the hood for ndarray.clipEric Wieser2019-05-141-0/+21
* ENH: clip test output argument for memory overlap with inputSebastian Berg2018-07-271-14/+21
* BUG: Clip uses wrong memory order in outputSebastian Berg2018-07-271-1/+3
* MAINT: Use PyArray_NewFromDescr in place of PyArray_New for known numeric typesEric Wieser2018-06-031-8/+8
* DEP, ENH: deprecate UPDATEIFCOPY (except for nditer) and replace with WRITEBA...Matti Picus2017-11-081-6/+10
* DEP: deprecate ndarray.conjugate's no-op fall through for non-numericJonathan L Long2017-05-071-0/+8
* BUG: ndarray.conjugate broken for custom dtypes (unlike np.conjugate)Jonathan L Long2017-05-051-1/+2
* BUG: Memory Leak in _GenericBinaryOutFunction. Fixes #6672Simon Gibbons2016-03-301-13/+9
* MANT: Add castings to PyObject in PyArray_RoundJaime Fernandez2015-04-231-2/+2
* BUG: fix round() on complex array with explicit outputAntoine Pitrou2015-04-231-2/+2
* ENH: faster fastclip functionsJulian Taylor2015-01-201-8/+3
* BUG: object array np.conjugate, ndarray.conjugate inconsistentEric Moore2014-07-231-1/+1
* BUG|API: Raise wrong arg{min|max} out shape and stricter checkSebastian Berg2013-12-201-8/+12
* MAINT: fix some compiler warningsJulian Taylor2013-05-251-0/+1
* BUG: Fix ticket #1588/gh issue #398, refcount error in clipMark Wiebe2012-08-311-9/+17
* STY: core: move non-Py3 specific stuff out from npy_3kcompat.h to private npy...Pauli Virtanen2012-07-131-1/+1
* Remove maskna API from ndarray, and all (and only) the code supporting itNathaniel J. Smith2012-06-161-41/+18
* DEP: Update all the '#define NPY_NO_DEPRECATED_API' instances to beMark Wiebe2012-04-061-1/+1
* UPD: Various fixes, Remove #define NPY_NO_PREFIX from files in core.Charles Harris2012-02-051-1/+1
* UPD: Make multiarray *.c files use prefixed macros.Charles Harris2012-02-041-2/+1
* UPD: Use prefixed macros in *.c files except numarray and linalg.Charles Harris2012-02-041-5/+5
* STY: core/src - replace macros in old_defines.h with new versions.Charles Harris2012-02-041-6/+6
* STY: Some coding style fixups.Charles Harris2011-10-231-14/+22
* ENH: Explicitly coded argmin for timedeltaBen Root2011-10-231-17/+94
* WRN: Remove many warnings when building at a higher warning levelMark Wiebe2011-10-011-8/+8
* ENH: ufunc: Move the default SAME_KIND casting rule out of the ufunc codeMark Wiebe2011-08-271-4/+12
* BUG: missingdata: Fleshing things out, tracking down a memory corruptionMark Wiebe2011-08-271-1/+1
* ENH: missingdata: Adding NA support to various methodsMark Wiebe2011-08-271-73/+117
* ENH: core: Fix more test failures post-field access deprecationMark Wiebe2011-07-191-13/+6
* ENH: core: more progress removing direct ArrayObject field accessMark Wiebe2011-07-191-36/+36
* ENH: core: More progress refactoring code to not use PyArrayObject fields dir...Mark Wiebe2011-07-191-35/+38
* DEP: core: Move NPY_AO into the deprecated API headerMark Wiebe2011-07-081-37/+33
* ENH: core: Deprecate some bad namespace-polluting macrosMark Wiebe2011-07-061-12/+16
* BUG: core: Make slow clip use casting='unsafe' for compatibilityMark Wiebe2011-06-221-1/+24
* WHT: Whitespace cleanup.Charles Harris2011-02-031-1/+0
* ENH: core: Shuffle type numbers so any new ones go on the end.Mark Wiebe2011-01-251-1/+1
* BUG: core: make .std() and .var() respect the out= keyword (#1434)Pauli Virtanen2010-07-181-3/+8