DiscreteSamplerpublic class PoissonSampler extends SamplerBase implements DiscreteSampler
Devroye, Luc. (1981). The Computer Generation of Poisson Random Variables
Computing vol. 26 pp. 197-207.
| Constructor | Description |
|---|---|
PoissonSampler(org.apache.commons.rng.UniformRandomProvider rng,
double mean) |
| Modifier and Type | Method | Description |
|---|---|---|
int |
sample() |
Creates a sample.
|
java.lang.String |
toString() |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitnextDouble, nextInt, nextInt, nextLongpublic PoissonSampler(org.apache.commons.rng.UniformRandomProvider rng,
double mean)
rng - Generator of uniformly distributed random numbers.mean - Mean.java.lang.IllegalArgumentException - if mean <= 0.public int sample()
sample in interface DiscreteSamplerpublic java.lang.String toString()
toString in class SamplerBaseCopyright © 2016–2018 The Apache Software Foundation. All rights reserved.