yat
0.20.3pre
|
#include <yat/random/random.h>
Public Types | |
typedef unsigned long int | result_type |
Public Member Functions | |
Poisson (const double m=1) | |
Constructor. More... | |
unsigned long | operator() (void) const |
unsigned long | operator() (const double m) const |
void | seed (unsigned long s) const |
Set the seed to s. More... | |
unsigned long | seed_from_devurandom (void) |
Set the seed using the /dev/urandom device. More... | |
Protected Attributes | |
RNG * | rng_ |
GSL random gererator. | |
Poisson Distribution.
Having a Poisson process (i.e. no memory), number of occurences within a given time window is Poisson distributed. This distribution is the limit of a Binomial distribution when number of attempts is large, and the probability for one attempt to be succesful is small (in such a way that the expected number of succesful attempts is .
Probability function for
Expectation value:
Variance:
|
inherited |
type returned by operator()
|
explicit |
Constructor.
m | is expectation value |
|
virtual |
Implements theplu::yat::random::Discrete.
unsigned long theplu::yat::random::Poisson::operator() | ( | const double | m | ) | const |
|
inherited |
Set the seed to s.
Set the seed to s in the underlying rng. If s is zero, a default value from the rng's original implementation is used (cf. GSL documentation).
|
inherited |
Set the seed using the /dev/urandom device.