PertDistribution Constructor

Constructs a new PERT distribution.

Definition

Namespace: Numerics.NET.Statistics.Distributions
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
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.

See Also