Class UniformDoubleRVRV

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

public class UniformDoubleRVRV extends DoubleRandomVariableRV<UniformDoubleRV>
Random variable that generates the same integer-valued random variable repeatedly.
  • Constructor Details

    • UniformDoubleRVRV

      public UniformDoubleRVRV(DoubleRandomVariable lowerLimitRV, DoubleRandomVariable 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
    • UniformDoubleRVRV

      public UniformDoubleRVRV(DoubleRandomVariable lowerLimitRV, boolean lowerClosed, DoubleRandomVariable 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 - 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