Overload List

  NameDescription
RandGenUniform()()()
Constructs a random number generator using a RandGenMTwist as the underlying uniform random number generator. The lower and bounds bounds of the deviates are 0 and 1, respectively.
RandGenUniform(Interval)
Constructs a random number generator using a RandGenMTwist as the underlying uniform random number generator. The generated deviates will follow a uniform distribution within the specified interval.
RandGenUniform(RandomNumberGenerator..::.UniformRandomNumber)
Constructs a random number generator using the given delegate as the underlying uniform random number generator. The lower and bounds bounds of the deviates are 0 and 1, respectively.
RandGenUniform(Int32)
Constructs a random number generator using a seeded RandGenMTwist as the underlying uniform random number generator. The lower and bounds bounds of the deviates are 0 and 1, respectively.
RandGenUniform(Interval, Int32)
Constructs a random number generator using a seeded RandGenMTwist as the underlying uniform random number generator. The generated deviates will follow a uniform distribution within the specified interval.
RandGenUniform(Double, Double)
Constructs a random number generator using a RandGenMTwist as the underlying uniform random number generator. The generated deviates will follow a uniform distribution with the specified lower and upper bounds.
RandGenUniform(Double, Double, RandomNumberGenerator..::.UniformRandomNumber)
Constructs a random number generator using the given delegate as the underlying uniform random number generator. The generated deviates will follow a uniform distribution with the specified lower and upper bounds.
RandGenUniform(Double, Double, Int32)
Constructs a random number generator using a seeded RandGenMTwist as the underlying uniform random number generator. The generated deviates will follow a uniform distribution with the specified lower and upper bounds.

See Also