|  | Name | Description | 
|---|
|  | RandGenWeibull(Double) | Constructs a random number generator using RandGenMTwist as the
            underlying uniform random number generator. The generated deviates will follow
            a Weibull distribution with the specified shape and default scale. | 
|  | RandGenWeibull(Double, RandomNumberGeneratorUniformRandomNumber) | Constructs a random number generator using the given shape and delegate as the
            underlying uniform random number generator. The default scale is used. | 
|  | RandGenWeibull(Double, Double) | Constructs a random number generator using RandGenMTwist as the
            underlying uniform random number generator. The generated deviates will follow
            a Weibull distribution with the specified shape and scale. | 
|  | RandGenWeibull(Double, Int32) | Constructs a random number generator using a seeded RandGenMTwist as the
            underlying uniform random number generator. The generated deviates will follow
            a Weibull distribution with the specified shape default scale. | 
|  | RandGenWeibull(Double, Double, RandomNumberGeneratorUniformRandomNumber) | Constructs a RandGenWeibull random number generator instance with the given shape,
            scale, and underlying uniform random number delegate. | 
|  | RandGenWeibull(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 Weibull distribution with the specified shape and scale. |