summaryrefslogtreecommitdiff
path: root/numpy/lib/polynomial.py
AgeCommit message (Expand)AuthorFilesLines
2018-01-30BUG: Fixed polydiv for Complex Numbers (#10473)Deepak Kumar Gouda1-1/+1
2017-03-21TST: Prove that poly1d coeffs are immutableEric Wieser1-3/+2
2017-03-21BUG: Prevent modification of coefficientsEric Wieser1-1/+1
2017-03-21BUG: Fix regression in scipy that relied on quirky behaviourEric Wieser1-0/+10
2017-03-09DEP: Deprecate copying random properties in __init__Eric Wieser1-2/+9
2017-03-09MAINT: Remove weird __setattr__ logic emulating propertiesEric Wieser1-27/+32
2017-03-09BUG: Prevent crash in poly1d.__eq__Eric Wieser1-0/+4
2017-02-24MAINT: replace len(x.shape) with x.ndimEric Wieser1-2/+2
2016-09-23DOC: Fix erroneous return type description for np.roots.Stuart Archibald1-1/+1
2016-09-02ENH: Add stacklevel to all (or almost all) our function callsSebastian Berg1-1/+1
2016-08-26DOC: Fixed documented dimension of return value Joseph Fox-Rabinovitz1-1/+1
2016-06-15TST: Test that polyfit raises if not enough data for cov estimate.Charles Harris1-3/+3
2016-06-15BUG: Make sure we don't divide by zero in np.polyfit.David Schaich1-0/+3
2016-06-15Merge pull request #4073 from endolith/patch-2Charles Harris1-6/+2
2016-05-11DOC: Fix some incorrect RST definition listsEndolith1-1/+1
2015-12-22DOC: Fix poly_val description for 'x' inputgfyoung1-4/+4
2015-12-19DOC: Use print only as function when print_function is imported from __future__gfyoung1-8/+8
2015-11-13add clarification of weights to documentationGriffin Hosseinzadeh1-1/+2
2015-02-17Simpler checking of complex conjugatesendolith1-6/+3
2015-01-25BUG: sort after conjugating so that poly() outputs real type for exact conjug...endolith1-6/+5
2014-12-12DOC : do not abuse enum markupThomas A Caswell1-2/+2
2014-09-25ENH: Cast non-object arrays to float in np.polyjaimefrio1-6/+12
2014-09-02MAINT: Make numpy/lib/polynomial/polyval a bit faster.Charles Harris1-1/+1
2014-07-31STY: Make files in numpy/lib PEP8 compliant.Charles Harris1-33/+34
2014-05-04MAINT: Comparison deprecation followup fixesSebastian Berg1-15/+3
2014-05-04DEP: Deprecate that comparisons ignore errors.Sebastian Berg1-2/+16
2014-03-22DOC: Link convolve with polymulendolith1-0/+2
2014-03-15DOC: specify that 2d array must be non-empty in np.poly error message.Daniel da Silva1-1/+1
2013-09-04Merge pull request #3657 from charris/add-hash-method-to-polynomialsCharles Harris1-0/+2
2013-08-28BUG: Set __hash__ = None for non-hashable classes.Charles Harris1-0/+2
2013-08-25Small correction in the docstring of polyfit. As mentionned in Issue 3640, th...Matthieu Dartiailh1-3/+3
2013-08-18STY: Giant comma spacing fixup.Charles Harris1-7/+7
2013-05-02MAINT: Apply 2to3 idioms fixer.Charles Harris1-1/+1
2013-04-062to3: Apply `print` fixer.Charles Harris1-1/+1
2013-04-03Merge pull request #460 from endolith/regex_formattingCharles Harris1-1/+1
2013-03-282to3: Use absolute imports.Charles Harris1-1/+1
2013-03-19DOC: regex-assisted fixes of definition list formattingendolith1-1/+1
2013-03-012to3: Put `from __future__ import division in every python file.Charles Harris1-0/+2
2013-03-012to3: Apply `raise` fixes. Closes #3077.Charles Harris1-2/+2
2011-09-13ENH: Add weights and covariance estimate to standard polyfit.Travis E. Oliphant1-18/+47
2011-04-05STY: Fix up some remaining old-style exceptions.Charles Harris1-2/+2
2011-04-05STY: Update exception style, easy ones.Charles Harris1-13/+13
2011-04-02WHT: Cleanup trailing whitespace.Charles Harris1-3/+3
2011-03-02DOC: merge more doc wiki edits.rgommers1-12/+10
2010-05-05BUG: Make polyder return a poly1d for the zeroeth order derivative whenCharles Harris1-8/+9
2010-02-213K: lib: implement __rtruediv__ for poly1dPauli Virtanen1-0/+2
2010-02-213K: lib: poly1d __div__ -> __truediv__, and fix its doctestsPauli Virtanen1-0/+2
2010-02-08BUG: Check input to poly for zero-dimensional arrays.Stefan van der Walt1-2/+2
2009-12-28fixed a whole bunch of doctestsPaul Ivanov1-7/+19
2009-10-02Docstring update: libPauli Virtanen1-86/+227