Class UniformIntegerRVRV

All Implemented Interfaces:
Cloneable, RandomVariableOps<UniformIntegerRV>, RandomVariableRVNOps<Integer,UniformIntegerRV>, RandomVariableRVOps<Integer,UniformIntegerRV>

public class UniformIntegerRVRV extends IntegerRandomVariableRV<UniformIntegerRV>
Random variable that generates the same integer-valued random variable repeatedly.
  • Constructor Details

    • UniformIntegerRVRV

      public UniformIntegerRVRV(IntegerRandomVariable lowerLimitRV, IntegerRandomVariable upperLimitRV)
      Constructor.
      Parameters:
      lowerLimitRV - random variable for the lower limit for the random variable produced
      upperLimitRV - random variable for the lower limit for the random variable produced
    • UniformIntegerRVRV

      public UniformIntegerRVRV(IntegerRandomVariable lowerLimitRV, boolean lowerClosed, IntegerRandomVariable upperLimitRV, boolean upperClosed)
      Constructor specifying random variables for range type (open, closed, etc.).
      Parameters:
      lowerLimitRV - random variable for the lower limit for the random variable produced
      lowerClosed - true if the lower limit is included in the range and false if it is not
      upperLimitRV - random variable for the lower limit for the random variable produced
      upperClosed - true if the upper limit is included in the range and false if it is not
  • Method Details