Re: [Numpy-discussion] Wanted: new release manager for 1.5 and above

2010-01-15 Thread Ralf Gommers
On Fri, Jan 15, 2010 at 11:56 PM, David Cournapeau wrote: > > > How many combinations do you test manually? All supported Python versions > on > > all platforms? Several Linux flavors? > > > I basically assume that linux works once the branch is stabilized, if > only because that's what most devel

Re: [Numpy-discussion] Wanted: new release manager for 1.5 and above

2010-01-15 Thread Dag Sverre Seljebotn
Charles R Harris wrote: > > > On Fri, Jan 15, 2010 at 8:56 AM, David Cournapeau > wrote: > > On Fri, Jan 15, 2010 at 11:46 PM, Ralf Gommers > mailto:ralf.gomm...@googlemail.com>> > wrote: > > Hi David, > > > > Here are some questions to get

Re: [Numpy-discussion] Wanted: new release manager for 1.5 and above

2010-01-15 Thread Charles R Harris
On Fri, Jan 15, 2010 at 8:56 AM, David Cournapeau wrote: > On Fri, Jan 15, 2010 at 11:46 PM, Ralf Gommers > wrote: > > Hi David, > > > > Here are some questions to get a clearer idea of exactly what's involved > in > > / required for making a release. > > > > On Thu, Jan 14, 2010 at 2:34 PM, Davi

[Numpy-discussion] Buildbot down

2010-01-15 Thread Charles R Harris
Hi All, The numpy buildbot has been down for a while now, or maybe I just missed some time when it was up. Is this a known problem? Chuck ___ NumPy-Discussion mailing list NumPy-Discussion@scipy.org http://mail.scipy.org/mailman/listinfo/numpy-discussio

Re: [Numpy-discussion] Percentiles and Box Plots

2010-01-15 Thread Wayne Watson
Thanks. I'll give it a try. Is this something fairly new? Robert Kern wrote: On Fri, Jan 15, 2010 at 17:06, Wayne Watson wrote: I have from about 90 to 600 points of different data sets that I would like to find the 10th and 90th percentile for. Does numpy have a function for tha

Re: [Numpy-discussion] Percentiles and Box Plots

2010-01-15 Thread Keith Goodman
On Fri, Jan 15, 2010 at 6:48 PM, Wayne Watson wrote: > Thanks. I'll give it a try. Is this something fairly new? From http://projects.scipy.org/scipy/search?q=scoreatpercentile it looks like it has been there a few years. But what percentile is a few years? _

Re: [Numpy-discussion] Percentiles and Box Plots

2010-01-15 Thread Robert Kern
On Fri, Jan 15, 2010 at 17:06, Wayne Watson wrote: > I have from about 90 to 600 points of different data sets that I would > like to find the 10th and 90th percentile for. Does numpy have a > function for that, or any other percentile points?  Is there a method > for getting at the Box Plot quart

[Numpy-discussion] Percentiles and Box Plots

2010-01-15 Thread Wayne Watson
I have from about 90 to 600 points of different data sets that I would like to find the 10th and 90th percentile for. Does numpy have a function for that, or any other percentile points? Is there a method for getting at the Box Plot quartiles, and ranges. I think that's the simplest set for Bo

Re: [Numpy-discussion] broken links on http://numpy.scipy.org/

2010-01-15 Thread Jarrod Millman
On Fri, Jan 15, 2010 at 1:38 AM, Sebastian Haase wrote: > Apparently this very nice looking icons (4 of the 5 icons or so) > at http://numpy.scipy.org/ are broken links. Fixed. Thanks, -- Jarrod Millman Helen Wills Neuroscience Institute 10 Giannini Hall, UC Berkeley http://cirl.berkeley.edu/

Re: [Numpy-discussion] ipython

2010-01-15 Thread Pauli Virtanen
pe, 2010-01-15 kello 19:19 +0100, Nils Wagner kirjoitti: [clip: issue with ipython] > Any idea ? Maybe people on the Ipython mailing list would know best? http://mail.scipy.org/mailman/listinfo/ipython-user http://mail.scipy.org/mailman/listinfo/ipython-dev -- Pauli Virtanen

[Numpy-discussion] ipython

2010-01-15 Thread Nils Wagner
Hi all, I tried to install ipython via bzr If I run iypthon I get ipython Traceback (most recent call last): File "/home/nwagner/local/bin/ipython", line 4, in from IPython.core.ipapp import launch_new_instance ImportError: No module named ipapp Any idea ? Nils _

Re: [Numpy-discussion] linalg.eig getting the original matrix back ?

2010-01-15 Thread josef . pktd
On Fri, Jan 15, 2010 at 12:24 PM, Warren Weckesser wrote: > For the case where all the eigenvalues are simple, this works for me: > > In [1]: import numpy as np > > In [2]: a = np.array([[1.0, 2.0, 3.0],[2.0, 3.0, 0.0], [3.0, 0.0, 4.0]]) > > In [3]: eval, evec = np.linalg.eig(a) > > In [4]: eval >

Re: [Numpy-discussion] linalg.eig getting the original matrix back ?

2010-01-15 Thread Warren Weckesser
For the case where all the eigenvalues are simple, this works for me: In [1]: import numpy as np In [2]: a = np.array([[1.0, 2.0, 3.0],[2.0, 3.0, 0.0], [3.0, 0.0, 4.0]]) In [3]: eval, evec = np.linalg.eig(a) In [4]: eval Out[4]: array([-1.51690942, 6.24391817, 3.27299125]) In [5]: a2 = np.do

Re: [Numpy-discussion] linalg.eig getting the original matrix back ?

2010-01-15 Thread josef . pktd
On Fri, Jan 15, 2010 at 12:07 PM, wrote: > On Fri, Jan 15, 2010 at 11:32 AM, Sebastian Walter > wrote: >> numpy.linalg.eig guarantees to return right eigenvectors. >> evec is not necessarily an orthonormal matrix when there are >> eigenvalues with multiplicity >1. >> For symmetrical matrices you

Re: [Numpy-discussion] Wanted: new release manager for 1.5 and above

2010-01-15 Thread Patrick Marsh
I'm willing to get on board and learn/help with the releases. At present, my main machine is a Windows 7 box running EPD 5.1.1 and EPD 6.0. I also have a relatively old, but still functional, macbook pro that I can tinker with as well. I will state upfront that while I'm not a complete newbie wh

Re: [Numpy-discussion] linalg.eig getting the original matrix back ?

2010-01-15 Thread josef . pktd
On Fri, Jan 15, 2010 at 11:32 AM, Sebastian Walter wrote: > numpy.linalg.eig guarantees to return right eigenvectors. > evec is not necessarily an orthonormal matrix when there are > eigenvalues with multiplicity >1. > For symmetrical matrices you'll have mutually orthogonal eigenspaces > but each

Re: [Numpy-discussion] linalg.eig getting the original matrix back ?

2010-01-15 Thread Sebastian Walter
numpy.linalg.eig guarantees to return right eigenvectors. evec is not necessarily an orthonormal matrix when there are eigenvalues with multiplicity >1. For symmetrical matrices you'll have mutually orthogonal eigenspaces but each eigenspace might be spanned by vectors that are not orthogonal to ea

Re: [Numpy-discussion] Wanted: new release manager for 1.5 and above

2010-01-15 Thread David Cournapeau
On Fri, Jan 15, 2010 at 11:46 PM, Ralf Gommers wrote: > Hi David, > > Here are some questions to get a clearer idea of exactly what's involved in > / required for making a release. > > On Thu, Jan 14, 2010 at 2:34 PM, David Cournapeau > wrote: >> >> Charles R Harris wrote: >> >> > >> > >> > What

[Numpy-discussion] linalg.eig getting the original matrix back ?

2010-01-15 Thread josef . pktd
I had a problem because linal.eig doesn't rebuild the original matrix, linalg.eigh does, see script below Whats the trick with linalg.eig to get the original (or the inverse) back ? None of my variations on the formulas worked. Thanks, Josef import numpy as np import scipy as sp import scipy.li

Re: [Numpy-discussion] Wanted: new release manager for 1.5 and above

2010-01-15 Thread Robert Kern
On Fri, Jan 15, 2010 at 08:46, Ralf Gommers wrote: > Is it necessary to have OS X to build the dmg installer, or could you build > that from linux with some modifications to the build script? No, you need OS X to build and package the OS X binaries. -- Robert Kern "I have come to believe that

Re: [Numpy-discussion] svn log and blank entries

2010-01-15 Thread josef . pktd
On Fri, Jan 15, 2010 at 9:50 AM, Nils Wagner wrote: > Hi all, > > An svn log > CHANGELOG in svn/numpy yields some blank > entries > Is that intended ? > > > > r8055 | ariver | 2010-01-15 03:02:30 +0100 (Fr, 15 Jan > 2010) | 1

[Numpy-discussion] svn log and blank entries

2010-01-15 Thread Nils Wagner
Hi all, An svn log > CHANGELOG in svn/numpy yields some blank entries Is that intended ? r8055 | ariver | 2010-01-15 03:02:30 +0100 (Fr, 15 Jan 2010) | 1 line _ ---

Re: [Numpy-discussion] Wanted: new release manager for 1.5 and above

2010-01-15 Thread Ralf Gommers
Hi David, Here are some questions to get a clearer idea of exactly what's involved in / required for making a release. On Thu, Jan 14, 2010 at 2:34 PM, David Cournapeau wrote: > Charles R Harris wrote: > > > > > > > What is the setup one needs to build the installers? It might be well to > > doc

[Numpy-discussion] broken links on http://numpy.scipy.org/

2010-01-15 Thread Sebastian Haase
Hi, Apparently this very nice looking icons (4 of the 5 icons or so) at http://numpy.scipy.org/ are broken links. Regards, Sebastian Haase ___ NumPy-Discussion mailing list NumPy-Discussion@scipy.org http://mail.scipy.org/mailman/listinfo/numpy-discussio

Re: [Numpy-discussion] Matrix vs array in ma.minimum

2010-01-15 Thread Pierre GM
On Jan 14, 2010, at 11:06 PM, David Cournapeau wrote: > On Fri, Jan 15, 2010 at 11:59 AM, Pierre GM wrote: >> On Jan 14, 2010, at 8:52 PM, David Cournapeau wrote: >>> Pierre GM wrote: >>> Er, no. np.ma.minimum(a, b) returns the lowest value of a and b element-wsie, or the th