Class PoissonDoubleRVRV

All Implemented Interfaces:
Cloneable, RandomVariableOps<PoissonDoubleRV>, RandomVariableRVNOps<Double,PoissonDoubleRV>, RandomVariableRVOps<Double,PoissonDoubleRV>

public class PoissonDoubleRVRV extends DoubleRandomVariableRV<PoissonDoubleRV>
Class to generate a sequence of double-valued Poisson Random Variables.
  • Constructor Details

    • PoissonDoubleRVRV

      public PoissonDoubleRVRV(DoubleRandomVariable lambdaRV)
      Constructor.
      Parameters:
      lambdaRV - a random variable that determines the parameter λ which gives the mean of the distribution for a Poisson random variable
    • PoissonDoubleRVRV

      public PoissonDoubleRVRV(DoubleRandomVariable lambdaRV, boolean mode)
      Constructor with a mode to allow tables to be allocated.
      Parameters:
      lambdaRV - a random variable that determines the parameter λ which gives the mean of the distribution for a Poisson random variable
      mode - true if tables should be allocated to improve execution speed when a PoissonDoubleRV is created; false otherwise
      See Also:
  • Method Details