summaryrefslogtreecommitdiff
path: root/numpy/lib/polynomial.py
Commit message (Expand)AuthorAgeFilesLines
* Fix typos found by copdespellDimitri Papadopoulos2023-02-111-1/+1
* MAINT: Fix stacklevels for the new C dispatcher not adding oneSebastian Berg2023-01-171-1/+1
* MAINT: Move set_module to numpy.core to use without C importSebastian Berg2022-11-241-1/+2
* MAINT: fix typo (#20862)Ruben Garcia2022-01-201-1/+1
* DOC: Do not leave space between directive name and double colon.Matthias Bussonnier2021-11-031-1/+1
* DOC: fix formatting of a return value of polynomial fit methodsSamyak S Sarnayak2021-09-211-6/+12
* MAINT: refactor "for ... in range(len(" statementsMike Taves2021-09-011-12/+11
* DOC: Adjust polyfit doc to clarify the meaning of w (#18421)Mike Jarvis2021-06-081-3/+6
* BUG: Fixed an issue wherein `poly1d.__getitem__` could return scalars of the ...Bas van Beek2021-05-281-7/+7
* MAINT: regex char class improveTyler Reddy2020-12-281-1/+1
* DOC: Fix a couple of reference to verbatim and vice versaMatthias Bussonnier2020-12-181-2/+2
* DOC: Fix doctestsEric Wieser2020-10-241-3/+3
* use integer literal instead of floatCameron Blocker2020-10-181-1/+1
* BUG: Respect dtype of all-zero argument to poly1dCameron Blocker2020-10-171-1/+1
* BUG: fix typo in polydiv that prevented promotion to poly1d (#17053)jakobjakobson132020-08-171-1/+1
* Update to polynomial.pydavidedalbosco2020-07-151-5/+6
* DOC: Add transition note to all lib/poly functionsRoss Barnowski2020-05-061-0/+66
* 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
* DOC: clarify residual in np.polyfitSeth Troisi2019-10-021-4/+4
* BUG: Increment stacklevel for warnings to account for NEP-18 overrides (#13589)Stephan Hoyer2019-05-201-1/+1
* Merge branch 'master' into poly1d-fixes-fixes-fixes-fixesEric Wieser2019-04-161-48/+119
|\
| * DOC: fix 4 remaining doc build warnings.Ralf Gommers2019-04-141-2/+4
| * DOC: fix some more See Also issuesRalf Gommers2019-04-141-5/+4
| * Merge pull request #12239 from daten-kieker/polyval_2477Marten van Kerkwijk2019-01-041-1/+3
| |\
| | * BUG: polyval returned Non-Masked Arrays for Masked Input.Joachim Hereth2018-10-211-1/+3
| * | TST, DOC: enable refguide_checkTyler Reddy2018-12-141-21/+22
| * | Removed non-standard scaling of the covariance matrix and added option to dis...Andreas Nussbaumer2018-11-211-11/+19
| * | DOC: Fix typo in polyint.Alon Hershenhorn2018-11-151-1/+1
| * | ENH: set correct __module__ for objects in numpy's public APIStephan Hoyer2018-11-131-0/+3
| * | MAINT: set preferred __module__ for numpy functionsStephan Hoyer2018-10-231-1/+6
| * | ENH: __array_function__ support for np.lib, part 2/2 (#12119)Stephan Hoyer2018-10-221-0/+52
| |/
| * DOC: Small docstring fixes for old polyfit.Charles Harris2018-08-151-2/+1
| * DOC: recommend polynomial.Polynomial over np.polyfit (#11733)Matti Picus2018-08-141-1/+6
| * HTTP -> HTTPS, and other linkrot fixesMike Toews2018-06-161-2/+2
| * MAINT: move matrix tests in lib to matrixlib.Marten van Kerkwijk2018-04-291-5/+0
| * BUG: Fixed polydiv for Complex Numbers (#10473)Deepak Kumar Gouda2018-01-301-1/+1
* | BUG: Return the coefficients array directlyEric Wieser2017-07-081-2/+8
|/
* TST: Prove that poly1d coeffs are immutableEric Wieser2017-03-211-3/+2
* BUG: Prevent modification of coefficientsEric Wieser2017-03-211-1/+1
* BUG: Fix regression in scipy that relied on quirky behaviourEric Wieser2017-03-211-0/+10
* DEP: Deprecate copying random properties in __init__Eric Wieser2017-03-091-2/+9
* MAINT: Remove weird __setattr__ logic emulating propertiesEric Wieser2017-03-091-27/+32
* BUG: Prevent crash in poly1d.__eq__Eric Wieser2017-03-091-0/+4
* MAINT: replace len(x.shape) with x.ndimEric Wieser2017-02-241-2/+2
* DOC: Fix erroneous return type description for np.roots.Stuart Archibald2016-09-231-1/+1
* ENH: Add stacklevel to all (or almost all) our function callsSebastian Berg2016-09-021-1/+1
* DOC: Fixed documented dimension of return value Joseph Fox-Rabinovitz2016-08-261-1/+1
* TST: Test that polyfit raises if not enough data for cov estimate.Charles Harris2016-06-151-3/+3
* BUG: Make sure we don't divide by zero in np.polyfit.David Schaich2016-06-151-0/+3