summaryrefslogtreecommitdiff
path: root/numpy/lib/function_base.py
Commit message (Expand)AuthorAgeFilesLines
* Merge pull request #16273 from CloseChoice/BUG-order_percentile-monotonicallySebastian Berg2020-06-271-1/+7
|\
| * Update numpy/lib/function_base.pyTobias Pitters2020-06-121-11/+6
| * fix _scalar_or_0d in _lerpTobias Pitters2020-06-101-1/+1
| * make lerp be able to handle 0d casesTobias Pitters2020-06-101-2/+2
| * remove debug statementsTobias Pitters2020-05-271-1/+0
| * fix lerp function and corresponding testsTobias Pitters2020-05-271-3/+11
| * use symmetric lerp functionTobias Pitters2020-05-271-8/+4
| * fix symmetry testTobias Pitters2020-05-271-6/+6
| * remove pdb; add hypothesis tests for monotony, boundedness and symmetry of lerpTobias Pitters2020-05-271-2/+8
| * add hypothesis test, fix bug of non-monotonic ordering of quantile functionCloseChoice2020-05-271-1/+3
* | DOC: Fixes for 18 broken links (#16472)bjnath2020-06-061-3/+2
* | MAINT: use zip instead of range in piecewiseEric Wieser2020-06-011-8/+6
* | DOC: make clearer that sinc is normalized by a factor piRalf Gommers2020-05-301-4/+11
|/
* Merge pull request #16332 from LSchroefl/link_SciPy_multidimensional_interpol...Matti Picus2020-05-221-0/+4
|\
| * Update numpy/lib/function_base.pyLSchroefl2020-05-221-1/+1
| * DOC: link np.interp to SciPy's multidimensional interpolation functions (#14154)skywalker2020-05-211-0/+4
* | Merge pull request #16284 from eric-wieser/extract-lerpSebastian Berg2020-05-191-62/+58
|\ \
| * | MAINT: remove workaround for fixed issue Eric Wieser2020-05-191-2/+0
| * | MAINT: Remove special cases for 0d arrays in quantileEric Wieser2020-05-181-62/+55
| * | MAINT: Extract a lerp helper function to make the algorithm of quantile clearerEric Wieser2020-05-181-4/+9
| |/
* | Merge pull request #16156 from WarrenWeckesser/deprecate-dualSebastian Berg2020-05-191-1/+0
|\ \ | |/ |/|
| * DEP: Deprecate `numpy.dual`.Warren Weckesser2020-05-041-1/+0
* | MAINT: Avoid moving axes around multiple timesEric Wieser2020-05-171-15/+5
* | MAINT: Remove a pointless ifEric Wieser2020-05-171-4/+1
* | Merge pull request #16125 from WarrenWeckesser/vectorize-bugMatti Picus2020-05-061-7/+15
|\ \
| * | BUG: lib: Fix a problem with vectorize with default parameters.Warren Weckesser2020-04-301-7/+15
| |/
* | DOC: Update np.copy docstring to include ragged case (#15928)Guilherme Leobas2020-05-051-0/+24
|/
* Added note to angle function docstring about angle(0) being 0.Melissa Weber Mendonca2020-04-131-0/+5
* MAINT: simplify code that assumes str/unicode and int/long are different type...Eric Wieser2020-03-261-1/+0
* DEP: Do not cast boolean indices to integers in np.delete (#15815)Eric Wieser2020-03-251-18/+24
* Merge pull request #15802 from eric-wieser/simplify-insertEric Wieser2020-03-241-20/+0
|\
| * DEP: Make `np.insert` and `np.delete` on 0d arrays with an axis an errorEric Wieser2020-03-221-20/+0
* | Merge pull request #15804 from eric-wieser/expire-delete-out-of-boundsSebastian Berg2020-03-231-17/+0
|\ \
| * | DEP: Make np.delete on out-of-bounds indices an errorEric Wieser2020-03-221-17/+0
| |/
* | DEP: Forbid passing non-integral index arrays to `insert` and `delete`Eric Wieser2020-03-221-15/+0
|/
* MAINT: Make the axis logic for delete match insert.Eric Wieser2020-03-221-5/+4
* MAINT: Add missing deprecation dates and versionsEric Wieser2020-03-221-1/+4
* MAINT: Remove some weird syntax for kwargsEric Wieser2020-03-221-1/+1
* MAINT: Add an explanatory comment for some weird codeEric Wieser2020-03-221-0/+2
* ENH: Add `subok` parameter to np.copy function (cf. gfh6509) (gh-15685)Ross Barnowski2020-03-111-3/+12
* BUG: Fixing result of np quantile edge caseEric Mariasis2020-02-281-1/+1
* BUG: fix doctest exception messagesmattip2020-02-281-1/+3
* STY: use 'yield from <expr>' for simple cases (#15444)Mike Taves2020-01-271-8/+4
* MAINT: Revise imports from collections.abc moduleMike Taves2020-01-221-7/+2
* MAINT: Implement keyword-only arguments as syntaxEric Wieser2020-01-061-20/+7
* MAINT: Remove implicit inheritance from object class (#15236)Jon Dufresne2020-01-051-1/+1
* MAINT: Remove unnecessary 'from __future__ import ...' statementsJon Dufresne2020-01-031-2/+0
* BUG: lib: Fix handling of integer arrays by gradient.Warren Weckesser2020-01-011-4/+13
* MAINT: lib: Clean up in function_base.py.Warren Weckesser2020-01-011-16/+13
* DOC: lib: Use a clearer example of ddof in the notes of the cov docstring.Warren Weckesser2019-11-301-1/+1