Generalized Pareto Distribution Constructor
Constructs a new GeneralizedParetoDistribution with the specified
shape, scale, and location parameters.
Definition
Namespace: Extreme.Statistics.Distributions
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
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. |