SSJ
V. labo.

umontreal.iro.lecuyer.randvar
Class BinomialConvolutionGen

java.lang.Object
  extended by umontreal.iro.lecuyer.randvar.RandomVariateGen
      extended by umontreal.iro.lecuyer.randvar.RandomVariateGenInt
          extended by umontreal.iro.lecuyer.randvar.BinomialGen
              extended by umontreal.iro.lecuyer.randvar.BinomialConvolutionGen

public class BinomialConvolutionGen
extends BinomialGen

BinomialConvolutionGen

Implements binomial random variate generators using the convolution method. This method generates n Bernouilli random variates with parameter p and adds them up. Its advantages are that it requires little computer memory and no setup time. Its disadvantage is that it is very slow for large n. It makes sense only when n is small.


Constructor Summary
BinomialConvolutionGen(RandomStream s, BinomialDist dist)
          .
BinomialConvolutionGen(RandomStream s, int n, double p)
          .
 
Method Summary
 int nextInt()
          .
static int nextInt(RandomStream s, int n, double p)
           
 
Methods inherited from class umontreal.iro.lecuyer.randvar.BinomialGen
getN, getP
 
Methods inherited from class umontreal.iro.lecuyer.randvar.RandomVariateGenInt
getDistribution, nextArrayOfInt
 
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

BinomialConvolutionGen

public BinomialConvolutionGen(RandomStream s,
                              int n,
                              double p)
. \begin{tabb}Creates a \emph{binomial} random variate generator with
 parameters $n$\ and $p$, using stream \texttt{s}.
 \end{tabb}


BinomialConvolutionGen

public BinomialConvolutionGen(RandomStream s,
                              BinomialDist dist)
. \begin{tabb}Creates a random variate generator for the \emph{binomial}
 distribution \texttt{dist} and stream \texttt{s}.
 \end{tabb}

Method Detail

nextInt

public int nextInt()
Description copied from class: RandomVariateGenInt
. \begin{tabb}
 Generates a random number (an integer) from the discrete
 distribu...
 ... object.
 Alternative generating methods are provided in subclasses.
 \end{tabb}
the generated value

Overrides:
nextInt in class RandomVariateGenInt

nextInt

public static int nextInt(RandomStream s,
                          int n,
                          double p)

SSJ
V. labo.

To submit a bug or ask questions, send an e-mail to Pierre L'Ecuyer.