Overload List

  NameDescription
RandGenGamma()()()
Constructs a random number generator using class RandGenMTwist as the underlying uniform random number generator. Generated random numbers will follow a gamma distribution with order and scale equal 1.
RandGenGamma(RandomNumberGenerator..::.UniformRandomNumber)
Constructs a random number generator using the given delegate as the underlying uniform random number generator. Generated random numbers will follow a gamma distribution with order and scale equal to one.
RandGenGamma(Double)
Constructs a random number generator using class RandGenMTwist as the underlying uniform random number generator. Generated random numbers will follow a gamma distribution with the specified order. The scale parameter defaults to one.
RandGenGamma(Int32)
Constructs a random number generator using class RandGenMTwist as the underlying uniform random number generator. Generated random numbers will follow a gamma distribution with order and scale equal to one.
RandGenGamma(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 gamma distribution with the specified order. The scale parameter defaults to 1.
RandGenGamma(Double, Double)
Constructs a random number generator using class RandGenMTwist as the underlying uniform random number generator. Generated random numbers will follow a gamma distribution with the specified order and scale parameters.
RandGenGamma(Double, Int32)
Constructs a random number generator using class RandGenMTwist as the underlying uniform random number generator. Generated random numbers will follow a gamma distribution with the specified order. The scale parameter defaults to 1.
RandGenGamma(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 gamma distribution with the specified order and scale parameter.
RandGenGamma(Double, Double, Int32)
Constructs a random number generator using class RandGenMTwist as the underlying uniform random number generator. Generated random numbers will follow a gamma distribution with the specified order and scale parameters.

See Also