|
SSJ V. 2.6.2. |
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object umontreal.iro.lecuyer.randvar.RandomVariateGen umontreal.iro.lecuyer.randvar.RandomVariateGenInt umontreal.iro.lecuyer.randvar.BinomialGen
public class BinomialGen
This class implements random variate generators for the binomial distribution. It has parameters n and p with mass function
The (non-static) nextInt method simply calls inverseF on the distribution.
Constructor Summary | |
---|---|
BinomialGen(RandomStream s,
BinomialDist dist)
Creates a random variate generator for the binomial distribution dist and the random stream s. |
|
BinomialGen(RandomStream s,
int n,
double p)
Creates a binomial random variate generator with parameters n and p, using stream s. |
Method Summary | |
---|---|
int |
getN()
Returns the parameter n of this object. |
double |
getP()
Returns the parameter p of this object. |
static int |
nextInt(RandomStream s,
int n,
double p)
Generates a new integer from the binomial distribution with parameters n = n and p = p, using the given stream s. |
Methods inherited from class umontreal.iro.lecuyer.randvar.RandomVariateGenInt |
---|
getDistribution, nextArrayOfInt, nextInt |
Methods inherited from class umontreal.iro.lecuyer.randvar.RandomVariateGen |
---|
getStream, nextArrayOfDouble, nextDouble, setStream, toString |
Methods inherited from class java.lang.Object |
---|
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
public BinomialGen(RandomStream s, int n, double p)
public BinomialGen(RandomStream s, BinomialDist dist)
Method Detail |
---|
public static int nextInt(RandomStream s, int n, double p)
public int getN()
public double getP()
|
SSJ V. 2.6.2. |
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |