Overload List

  NameDescription
RandGenPoisson()()()
Constructs a random number generator using a RandGenMTwist as the underlying uniform random number generator. The generated deviates will follow a Poisson distribution with mean equals 1.
RandGenPoisson(RandomNumberGenerator..::.UniformRandomNumber)
Constructs a random number generator using the given delegate as the underlying uniform random number generator. The generated deviates will follow a Poisson distribution with mean equals 1.
RandGenPoisson(Double)
Constructs a random number generator using a RandGenMTwist as the underlying uniform random number generator. The generated deviates will follow a Poisson distribution with the specified mean.
RandGenPoisson(Int32)
Constructs a random number generator using a seeded RandGenMTwist as the underlying uniform random number generator. The generated deviates will follow a Poisson distribution with mean equals 1.
RandGenPoisson(Double, RandomNumberGenerator..::.UniformRandomNumber)
Constructs a random number generator using the given delegate as the underlying uniform random number generator. The generated deviates will follow a Poisson distribution with the specified mean.
RandGenPoisson(Double, Int32)
Constructs a random number generator using a seeded RandGenMTwist as the underlying uniform random number generator. The generated deviates will follow a Poisson distribution with the specified mean.

See Also