Click or drag to resize

BetaScaledPERT Method

Create a Beta PERT distribution, used in risk analysis and other domains where an expert forecast is used to construct an underlying beta distribution.

Namespace: Altaxo.Calc.Distributions
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static BetaScaled PERT(
	double min,
	double max,
	double likely,
	Random randomSource = null
)

Parameters

min  Double
The minimum value.
max  Double
The maximum value.
likely  Double
The most likely value (mode).
randomSource  Random  (Optional)
The random number generator which is used to draw random samples.

Return Value

BetaScaled
The Beta distribution derived from the PERT parameters.
See Also