Pert Distribution Constructor
Constructs a new PERT distribution.
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 PertDistribution(
double a,
double b,
double c
)
Parameters
- a Double
- The minimum value.
- b Double
- The most likely value.
- c Double
- The maximum value.
Remarks
The most likely value, b, must lie strictly between the minimum a and the maximum c.
Exceptions
ArgumentException | a is greater than or equal to b -or- c is less than or equal to b. |