if you wanted to generate N Poisson random values all with the same rate r, you could do:
foo = rand(Poisson(r),N)
Note that with all of these you should first be doing
using Distributions
if you wanted to generate N Poisson random values all with the same rate r, you could do:
foo = rand(Poisson(r),N)
Note that with all of these you should first be doing
using Distributions