<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/numpy.git/numpy/lib/polynomial.py, 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>DOC: Fix erroneous return type description for np.roots.</title>
<updated>2016-09-23T10:46:23+00:00</updated>
<author>
<name>Stuart Archibald</name>
<email>stuart.archibald@googlemail.com</email>
</author>
<published>2016-09-23T10:46:23+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=8478ba7e9d12272e70931878c83127cb7290d9c6'/>
<id>8478ba7e9d12272e70931878c83127cb7290d9c6</id>
<content type='text'>
np.roots() does not always return complex roots, the
roots of a polynomial depend its coefficients and
therefore may be in the real or complex domain.

e.g.
```
&gt;&gt;&gt; (np.roots([1,2,3])).dtype
dtype('complex128')
&gt;&gt;&gt; (np.roots([1,2,])).dtype
dtype('float64')
```
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
np.roots() does not always return complex roots, the
roots of a polynomial depend its coefficients and
therefore may be in the real or complex domain.

e.g.
```
&gt;&gt;&gt; (np.roots([1,2,3])).dtype
dtype('complex128')
&gt;&gt;&gt; (np.roots([1,2,])).dtype
dtype('float64')
```
</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>DOC: Fixed documented dimension of return value </title>
<updated>2016-08-26T16:21:02+00:00</updated>
<author>
<name>Joseph Fox-Rabinovitz</name>
<email>madphysicist@users.noreply.github.com</email>
</author>
<published>2016-08-26T16:21:02+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=3bc03ae143b5321abf5ab2fd6676286d4c090716'/>
<id>3bc03ae143b5321abf5ab2fd6676286d4c090716</id>
<content type='text'>
The first dimension of the return value depends on the degree of the polynomial, not the number of elements being used in the fit.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The first dimension of the return value depends on the degree of the polynomial, not the number of elements being used in the fit.</pre>
</div>
</content>
</entry>
<entry>
<title>TST: Test that polyfit raises if not enough data for cov estimate.</title>
<updated>2016-06-15T18:04:39+00:00</updated>
<author>
<name>Charles Harris</name>
<email>charlesr.harris@gmail.com</email>
</author>
<published>2016-06-15T18:04:39+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=330291ffcba6d00b6534bcf80107f3baea5b48a4'/>
<id>330291ffcba6d00b6534bcf80107f3baea5b48a4</id>
<content type='text'>
Also a slight refactoring of np.polyfit.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Also a slight refactoring of np.polyfit.
</pre>
</div>
</content>
</entry>
<entry>
<title>BUG: Make sure we don't divide by zero in np.polyfit.</title>
<updated>2016-06-15T17:23:20+00:00</updated>
<author>
<name>David Schaich</name>
<email>daschaich@gmail.com</email>
</author>
<published>2016-05-24T23:31:51+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=37ee08dc9c7cbe0cf8a671c8cc73877d1a142ee1'/>
<id>37ee08dc9c7cbe0cf8a671c8cc73877d1a142ee1</id>
<content type='text'>
This should fix the issue discussed at
https://mail.scipy.org/pipermail/numpy-discussion/2013-July/067076.html

Without the ValueError added here, polyfit can (and does) return
negative or nan variances with no warning.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This should fix the issue discussed at
https://mail.scipy.org/pipermail/numpy-discussion/2013-July/067076.html

Without the ValueError added here, polyfit can (and does) return
negative or nan variances with no warning.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #4073 from endolith/patch-2</title>
<updated>2016-06-15T14:34:56+00:00</updated>
<author>
<name>Charles Harris</name>
<email>charlesr.harris@gmail.com</email>
</author>
<published>2016-06-15T14:34:56+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=e26738a628de0fe1897f2960708ec16e4c3177f7'/>
<id>e26738a628de0fe1897f2960708ec16e4c3177f7</id>
<content type='text'>
BUG: change real output checking to test if all imaginary parts are zero</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
BUG: change real output checking to test if all imaginary parts are zero</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: Fix poly_val description for 'x' input</title>
<updated>2015-12-23T00:24:19+00:00</updated>
<author>
<name>gfyoung</name>
<email>gfyoung17@gmail.com</email>
</author>
<published>2015-12-22T03:12:32+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=33140978603936fe2c93555e6badce55a841d432'/>
<id>33140978603936fe2c93555e6badce55a841d432</id>
<content type='text'>
Closes gh-6849.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Closes gh-6849.
</pre>
</div>
</content>
</entry>
<entry>
<title>DOC: Use print only as function when print_function is imported from __future__</title>
<updated>2015-12-20T00:50:09+00:00</updated>
<author>
<name>gfyoung</name>
<email>gfyoung17@gmail.com</email>
</author>
<published>2015-12-20T00:49:35+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=8bc592fabf4a2b0bc76db996b1523330ba095be3'/>
<id>8bc592fabf4a2b0bc76db996b1523330ba095be3</id>
<content type='text'>
Closes gh-6863.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Closes gh-6863.
</pre>
</div>
</content>
</entry>
<entry>
<title>add clarification of weights to documentation</title>
<updated>2015-11-13T02:17:54+00:00</updated>
<author>
<name>Griffin Hosseinzadeh</name>
<email>g.hosseinzadeh90@gmail.com</email>
</author>
<published>2015-11-13T02:17:54+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=35c2d9c9bb597be696005e325742fb8ae3e8f117'/>
<id>35c2d9c9bb597be696005e325742fb8ae3e8f117</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
