Beta |
public class BetaDistribution : ProbabilityDistribution
The BetaDistribution type exposes the following members.
| Name | Description | |
|---|---|---|
| BetaDistribution(Double, Double) | Initializes a new instance of the BetaDistribution class | |
| BetaDistribution(Double, Double, RandomGenerator) | Initializes a new instance of the BetaDistribution class |
| Name | Description | |
|---|---|---|
| A | ||
| B | ||
| Generator | Returns the random generator used by the distribution to generate the random values. (Inherited from ProbabilityDistribution) |
| Name | Description | |
|---|---|---|
| CDF | (Overrides ProbabilityDistributionCDF(Double)) | |
| Equals | Determines whether the specified object is equal to the current object. (Inherited from Object) | |
| Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object) | |
| GetHashCode | Serves as the default hash function. (Inherited from Object) | |
| GetType | Gets the Type of the current instance. (Inherited from Object) | |
| Initialize | ||
| MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object) | |
| NextDouble | (Overrides ProbabilityDistributionNextDouble) | |
(Overrides ProbabilityDistributionPDF(Double)) | ||
| Quantile | (Overrides ProbabilityDistributionQuantile(Double)) | |
| ToString | Returns a string that represents the current object. (Inherited from Object) |
| Name | Description | |
|---|---|---|
| a | ||
| aa | ||
| algorithmBB | ||
| alpha | ||
| b | ||
| bb | ||
| beta | ||
| delta | ||
| gamma | ||
| generator | Pointer to generator. (Inherited from ProbabilityDistribution) | |
| k1 | ||
| k2 | ||
| maxexp | ||
| scale |
Return Beta distributed random deviates according to the density
a-1 b-1
x (1-x)
p (x) dx = --------------- dx for 0 < x < 1
a,b B(a,b)
= 0 otherwise
References:
R. C. H. Cheng, Generating Beta Variatew with Non-integral Shape
Parameters, Comm. ACM, 21, 317-322 (1978). (Algorithms BB and BC).