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: 9.0.0
C#
public GeneralizedParetoDistribution(
	double shape,
	double scale,
	double location
)

Parameters

shape  Double
The shape of the distribution.
scale  Double
The scale parameter. Must be strictly greater than zero.
location  Double
The location parameter.

Remarks

shape and scale must be strictly greater than zero.

Exceptions

ArgumentOutOfRangeException

scale is less than or equal to zero.

See Also