|  | Name | Description | 
|---|
|  | 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(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(RandomNumberGeneratorUniformRandomNumber) | 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, RandomNumberGeneratorUniformRandomNumber) | 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, RandomNumberGeneratorUniformRandomNumber) | 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. |