GeneralizedParetoDistribution Constructor

Constructs a new GeneralizedParetoDistribution with the specified shape, scale, and location parameters.

Definition

Namespace: Numerics.NET.Statistics.Distributions
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 10.3.0
C#
public GeneralizedParetoDistribution(
	double shape,
	double scale,
	double location
)

Parameters

shape  Double
Shape parameter of the distribution.
scale  Double
Scale parameter.
location  Double
Location parameter of the distribution.

Remarks

shape and scale must be strictly greater than zero.

Exceptions

ArgumentOutOfRangeException

scale is less than or equal to zero.

See Also