Re: [Numpy-discussion] Live coding demonstration

2012-02-22 Thread Flavio Coelho
Shouldn't be hard to implement as a set of plugins to an editor. Hope someone starts such a project. On Wed, Feb 22, 2012 at 00:31, wrote: > This is the sort of programming environment I would love to have in > python. > > > http://flowingdata.com/2012/02/20/live-coding-and-inventing-on-princi

Re: [Numpy-discussion] [SciPy-User] Some numpy funcs for PyPy

2012-05-24 Thread Flavio Coelho
That's very usefull! I hope these features get included upstream in the next release of numpypy. thanks, Flávio On Thu, May 24, 2012 at 8:32 AM, Dmitrey wrote: > hi all, > maybe you're aware of numpypy - numpy port for pypy (pypy.org) - Python > language implementation with dynamic compilatio

[Numpy-discussion] bug in stats.randint

2009-04-23 Thread Flavio Coelho
Hi, I stumbled upon something I think is a bug in scipy: In [4]: stats.randint(1.,15.).ppf([.1,.2,.3,.4,.5]) Out[4]: array([ 2., 3., 5., 6., 7.]) When you pass float arguments to stats.randint and then call the ppf method, you get an array of floats, which clearly wrong. The rvs method doesn

Re: [Numpy-discussion] bug in stats.randint

2009-04-23 Thread Flavio Coelho
On Thu, Apr 23, 2009 at 2:56 PM, wrote: > On Thu, Apr 23, 2009 at 9:27 AM, Flavio Coelho wrote: > > > > Hi, > > > > I stumbled upon something I think is a bug in scipy: > > > > In [4]: stats.randint(1.,15.).ppf([.1, > > .2,.3,.4,.5]) > > Out[4]