Overload List

  NameDescription
RandGenBeta()()()
Constructs a random number generator using class RandGenMTwist as the underlying uniform random number generator. Generated random numbers will follow a beta distribution with alpha and beta equal to one.
RandGenBeta(RandomNumberGenerator..::.UniformRandomNumber)
Constructs a random number generator using the given delegate as the underlying uniform random number generator. Generated random numbers will follow a beta distribution with alpha and beta equal to one.
RandGenBeta(Double)
Constructs a random number generator using class RandGenMTwist as the underlying uniform random number generator. Generated random numbers will follow a beta distribution with the specified alpha. The beta parameter defaults to one.
RandGenBeta(Int32)
Constructs a random number generator using class RandGenMTwist as the underlying uniform random number generator. Generated random numbers will follow a beta distribution with alpha and beta equal to one.
RandGenBeta(Double, RandomNumberGenerator..::.UniformRandomNumber)
Constructs a random number generator using the given delegate as the underlying uniform random number generator. Generated random numbers will follow a beta distribution with the specified alpha. The beta parameter defaults to 1.
RandGenBeta(Double, Double)
Constructs a random number generator using class RandGenMTwist as the underlying uniform random number generator. Generated random numbers will follow a beta distribution with the specified alpha and beta parameters.
RandGenBeta(Double, Int32)
Constructs a random number generator using class RandGenMTwist as the underlying uniform random number generator. Generated random numbers will follow a beta distribution with the specified alpha. The beta parameter defaults to one.
RandGenBeta(Double, Double, RandomNumberGenerator..::.UniformRandomNumber)
Constructs a random number generator using the given delegate as the underlying uniform random number generator. Generated random numbers will follow a beta distribution with the specified alpha and beta parameter.
RandGenBeta(Double, Double, Int32)
Constructs a random number generator using class RandGenMTwist as the underlying uniform random number generator. Generated random numbers will follow a beta distribution with the specified alpha and beta parameters.

See Also