I have forgotten
my Password

Or login with:

  • Facebookhttp://facebook.com/
  • Googlehttps://www.google.com/accounts/o8/id
  • Yahoohttps://me.yahoo.com
Index »

how to generate poisson with single argument mean?

nirav\′s Photo
12 Nov 08, 4:55AM
(1 reply)
how to generate poisson with single argument mean?
In my algorithm i have to generate random number using poisson(lembda) where lembda is the single argument which is updated by code.now i know the equation of poisson and the value of lembda but i dont know which value of k should i take in equation of poisson to get the random number.can u explain with one example as initially my lembda =1.

F(k,λ ) = [(λ)^k * e^(-λ )] / k!

what value should i take as k in above equation so that it generates random number >= 1????
will\′s Photo
12 Nov 08, 8:15AM
In the normal poisson pdf k is the number of events, while λ is mean.

In your random generator, you shouldn't be entering k, this should be returned by the generator.
Currently you need to be logged in to leave a message.