Erlang Distribution Constructor
Constructs a new ErlangDistribution with the specified
order and scale parameters.
Definition
Namespace: Extreme.Statistics.Distributions
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
public ErlangDistribution(
int order,
double scale
)
Parameters
- order Int32
- The order of the distribution. Must be an integer strictly greater than zero.
- scale Double
- The scale parameter. Must be strictly greater than zero.
Remarks
The Erlang distribution is a gamma distribution with positive integer order.
Exceptions
ArgumentOutOfRangeException |
The order order is less than or equal to zero.
-or- scale is less than or equal to zero. |