From: Travis O. <oli...@ee...> - 2006-07-28 13:53:22
|
Sebastian Haase wrote: >Hi, >Essentially I'm looking for the equivalent of what was in numarray: > from numarray import random_array > random_array.poisson(arr) > > > > I've just updated the mtrand library to allow this. It will be in 1.0b2 So, if you have latest SVN you can do from numpy import random random.poisson(arr) to do what you want. -Travis |