<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/numpy.git/numpy/polynomial, branch v1.12.0rc1</title>
<subtitle>github.com: numpy/numpy.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/'/>
<entry>
<title>DEP: Fix escaped string characters deprecated in Python 3.6.</title>
<updated>2016-12-17T23:51:03+00:00</updated>
<author>
<name>Charles Harris</name>
<email>charlesr.harris@gmail.com</email>
</author>
<published>2016-12-13T22:53:56+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=d156cafb3b9163d731869c18740a51f733c2c776'/>
<id>d156cafb3b9163d731869c18740a51f733c2c776</id>
<content type='text'>
In Python 3.6 a number of escape sequences that were previously accepted
-- for instance "\(" that was translated to "\\(" -- are deprecated. To
retain the previous behavior either raw strings must be used or the
backslash must be properly escaped itself.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
In Python 3.6 a number of escape sequences that were previously accepted
-- for instance "\(" that was translated to "\\(" -- are deprecated. To
retain the previous behavior either raw strings must be used or the
backslash must be properly escaped itself.
</pre>
</div>
</content>
</entry>
<entry>
<title>DOC: change version references from x.y to x.y.z</title>
<updated>2016-09-07T07:48:40+00:00</updated>
<author>
<name>Pierre de Buyl</name>
<email>pdebuyl@pdebuyl.be</email>
</author>
<published>2016-09-07T07:48:40+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=db0b231f17fb2148772181626235e2644eb67c3e'/>
<id>db0b231f17fb2148772181626235e2644eb67c3e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>DOC: change Numpy to NumPy in dosctrings and comments</title>
<updated>2016-09-06T12:42:08+00:00</updated>
<author>
<name>Pierre de Buyl</name>
<email>pdebuyl@pdebuyl.be</email>
</author>
<published>2016-09-06T12:42:08+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=2a55233b81a6ea18a57d1dd4f7bc5fff9f2fb681'/>
<id>2a55233b81a6ea18a57d1dd4f7bc5fff9f2fb681</id>
<content type='text'>
The strings in error messages were left untouched
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The strings in error messages were left untouched
</pre>
</div>
</content>
</entry>
<entry>
<title>ENH: Add stacklevel to all (or almost all) our function calls</title>
<updated>2016-09-02T14:39:17+00:00</updated>
<author>
<name>Sebastian Berg</name>
<email>sebastian@sipsolutions.net</email>
</author>
<published>2016-01-23T14:58:58+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=7884a8c9f5f5c6657413dbeaa59ad969280d38ea'/>
<id>7884a8c9f5f5c6657413dbeaa59ad969280d38ea</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>MAINT: refactor and small fixes to polyvalfromroots.</title>
<updated>2016-06-12T18:48:48+00:00</updated>
<author>
<name>Charles Harris</name>
<email>charlesr.harris@gmail.com</email>
</author>
<published>2016-06-12T18:31:56+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=e25f7c9e314e79de6be5f17dc4c2c2be8ee9b753'/>
<id>e25f7c9e314e79de6be5f17dc4c2c2be8ee9b753</id>
<content type='text'>
Simplify the logic a bit and make behavior consistent with polyval.

Note that this adds a check that the number of dimensions of the
array of the evaluation points is less than the number of dimensions of
the array of roots when tensor=False. That check is missing from polyval
and needs to be added.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Simplify the logic a bit and make behavior consistent with polyval.

Note that this adds a check that the number of dimensions of the
array of the evaluation points is less than the number of dimensions of
the array of roots when tensor=False. That check is missing from polyval
and needs to be added.
</pre>
</div>
</content>
</entry>
<entry>
<title>ENH: Add `polyrootval` to numpy.polynomial</title>
<updated>2016-06-12T18:08:54+00:00</updated>
<author>
<name>e-q</name>
<email>eric.antonio.quintero@gmail.com</email>
</author>
<published>2016-04-12T18:26:05+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=76e2d4751294077cc4cafe155571ead8213133a8'/>
<id>76e2d4751294077cc4cafe155571ead8213133a8</id>
<content type='text'>
As one can easily encounter when working with high-order signal processing
filters, converting a high-order polynomial from its roots to its polynomial
coefficients can be quite lossy, leading to inaccuracies in the filter's
properties.

This PR adds a new function, `polyrootval` - based on `polyval` -  that
evaluates a polynomial given a list of its roots. The benefit of calculating it
this way can be seen at scipy/scipy:6059. Some tests are included, as well.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
As one can easily encounter when working with high-order signal processing
filters, converting a high-order polynomial from its roots to its polynomial
coefficients can be quite lossy, leading to inaccuracies in the filter's
properties.

This PR adds a new function, `polyrootval` - based on `polyval` -  that
evaluates a polynomial given a list of its roots. The benefit of calculating it
this way can be seen at scipy/scipy:6059. Some tests are included, as well.
</pre>
</div>
</content>
</entry>
<entry>
<title>DOC: Fix some incorrect RST definition lists</title>
<updated>2016-05-12T00:47:47+00:00</updated>
<author>
<name>Endolith</name>
<email>endolith@gmail.com</email>
</author>
<published>2016-05-12T00:09:04+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=eb8913d1a39e09b739a6e9449dc841a52ecbac37'/>
<id>eb8913d1a39e09b739a6e9449dc841a52ecbac37</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>DOC: Minor typo fix, hermefik -&gt; hermefit.</title>
<updated>2016-03-14T22:34:53+00:00</updated>
<author>
<name>Jeremy Tuloup</name>
<email>jeremy.tuloup@gmail.com</email>
</author>
<published>2016-03-14T22:34:53+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=7ab13f537e80f564f3974463877f54c152616d76'/>
<id>7ab13f537e80f564f3974463877f54c152616d76</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>MAINT: Fix typos in docs/comment of `ma` and `polynomial` modules.</title>
<updated>2016-02-19T08:28:09+00:00</updated>
<author>
<name>Dongjoon Hyun</name>
<email>dongjoon@apache.org</email>
</author>
<published>2016-02-19T08:22:33+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=707772433ca82df688ca8c7db8dfc5531a517edc'/>
<id>707772433ca82df688ca8c7db8dfc5531a517edc</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>MAINT: Refactor polynomial leastsquares fits.</title>
<updated>2016-01-19T16:40:43+00:00</updated>
<author>
<name>Charles Harris</name>
<email>charlesr.harris@gmail.com</email>
</author>
<published>2016-01-18T19:09:41+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=48596210faa134149f7bd4a1a82a665e02bb8104'/>
<id>48596210faa134149f7bd4a1a82a665e02bb8104</id>
<content type='text'>
* Rewrite the documentation for `deg`.
* Check that the passed degrees are int and raise if not.
* Do not accept `deg` arguments that do not convert as 0-D or 1-D.
* Sort passed degree terms for repeatability.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Rewrite the documentation for `deg`.
* Check that the passed degrees are int and raise if not.
* Do not accept `deg` arguments that do not convert as 0-D or 1-D.
* Sort passed degree terms for repeatability.
</pre>
</div>
</content>
</entry>
</feed>
