Click or drag to resize

TriangularDistribution(Double, Double, Double) Constructor

Constructs a TriangularDistribution with the given parameters.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public TriangularDistribution(
	double lowerLimit,
	double upperLimit,
	double mode
)

Parameters

lowerLimit  Double
The upper limit of the distribution.
upperLimit  Double
The lower limit of the distribution.
mode  Double
The mode of the distribution. Must be between the upper and lower limits.
Exceptions
ExceptionCondition
InvalidArgumentExceptionThrown if the mode is less than the lower limit or greater than the upper limit.
See Also