SSJ
V. 1.2.5.

umontreal.iro.lecuyer.randvar
Class BetaRejectionLoglogisticGen

java.lang.Object
  extended by umontreal.iro.lecuyer.randvar.RandomVariateGen
      extended by umontreal.iro.lecuyer.randvar.BetaGen
          extended by umontreal.iro.lecuyer.randvar.BetaRejectionLoglogisticGen

public class BetaRejectionLoglogisticGen
extends BetaGen

Implements Beta random variate generators using the rejection method with log-logistic envelopes. The method draws the first two uniforms from the main stream and uses the auxiliary stream for the remaining uniforms, when more than two are needed (i.e., when rejection occurs).


Constructor Summary
BetaRejectionLoglogisticGen(RandomStream s, BetaDist dist)
          Same as BetaRejectionLoglogisticGen (s, s, dist).
BetaRejectionLoglogisticGen(RandomStream s, RandomStream aux, BetaDist dist)
          Creates a new generator for the distribution dist, using stream s and auxiliary stream aux.
 
Method Summary
 RandomStream getAuxStream()
          Returns the auxiliary stream associated with that object.
 double nextDouble()
          Generates a random number from the continuous distribution contained in this object.
 
Methods inherited from class umontreal.iro.lecuyer.randvar.BetaGen
nextDouble
 
Methods inherited from class umontreal.iro.lecuyer.randvar.RandomVariateGen
getDistribution, getStream, nextArrayOfDouble, setStream
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

BetaRejectionLoglogisticGen

public BetaRejectionLoglogisticGen(RandomStream s,
                                   RandomStream aux,
                                   BetaDist dist)
Creates a new generator for the distribution dist, using stream s and auxiliary stream aux. The main stream is used for the first uniforms (before a rejection occurs) and the auxiliary stream is used afterwards (after the first rejection).


BetaRejectionLoglogisticGen

public BetaRejectionLoglogisticGen(RandomStream s,
                                   BetaDist dist)
Same as BetaRejectionLoglogisticGen (s, s, dist). The auxiliary stream used will be the same as the main stream.

Method Detail

getAuxStream

public RandomStream getAuxStream()
Returns the auxiliary stream associated with that object.


nextDouble

public double nextDouble()
Description copied from class: RandomVariateGen
Generates a random number from the continuous distribution contained in this object. By default, this method uses inversion by calling the inverseF method of the distribution object. Alternative generating methods are provided in subclasses.

Overrides:
nextDouble in class BetaGen
Returns:
the generated value

SSJ
V. 1.2.5.

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