Erlang |
public class ErlangDistribution : ProbabilityDistribution
The ErlangDistribution type exposes the following members.
| Name | Description | |
|---|---|---|
| ErlangDistribution(Int32, Double) | Initializes a new instance of the ErlangDistribution class | |
| ErlangDistribution(Int32, Double, RandomGenerator) | Initializes a new instance of the ErlangDistribution class |
| Name | Description | |
|---|---|---|
| Generator | Returns the random generator used by the distribution to generate the random values. (Inherited from ProbabilityDistribution) | |
| Location | ||
| Order |
| 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) | |
| MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object) | |
| NextDouble | (Overrides ProbabilityDistributionNextDouble) | |
(Overrides ProbabilityDistributionPDF(Double)) | ||
| Quantile | (Overrides ProbabilityDistributionQuantile(Double)) | |
| SetOrder | ||
| ToString | Returns a string that represents the current object. (Inherited from Object) |
| Name | Description | |
|---|---|---|
| A | ||
| a1 | ||
| B | ||
| generator | Pointer to generator. (Inherited from ProbabilityDistribution) | |
| scale | ||
| scale2 | ||
| sq |
Return Erlang distributed random deviates according to:
a-1 -bx
b (bx) e
p (x) dx = ---------------- dx for x > 0
a,b Gamma(a)
= 0 otherwise
The Erlang distribution is a special case of the Gamma distribution
with integer valued order a.
References:
see references in:
W. H. Press, B. P. Flannery, S. A. Teukolsky, W. T. Vetterling,
Numerical Recipies in C, Cambridge Univ. Press, 1988.