Overload List

  NameDescription
RandGenTriangular()()()
Constructs a random number generator using a RandGenMTwist as the underlying uniform random number generator. The lower bound of the deviates is -1, the upper bound is 1, and the mode is 0.
RandGenTriangular(RandomNumberGenerator..::.UniformRandomNumber)
Constructs a random number generator using the given delegate as the underlying uniform random number generator. The lower bound of the deviates is -1, the upper bound is 1, and the mode is 0.
RandGenTriangular(Int32)
Constructs a random number generator using a seeded RandGenMTwist as the underlying uniform random number generator. The lower bound of the deviates is -1, the upper bound is 1, and the mode is 0.
RandGenTriangular(Double, Double, Double)
Constructs a random number generator using a RandGenMTwist as the underlying uniform random number generator. The generated deviates will follow a triangular distribution with the specified lower bound, upper bound, and mode.
RandGenTriangular(Double, 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 triangular distribution with the specified lower bound, upper bound, and mode.
RandGenTriangular(Double, 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 triangular distribution with the specified lower bound, upper bound, and mode.

See Also