BurrDistribution Constructor

Constructs a new BurrDistribution with the specified parameters.

Definition

Namespace: Numerics.NET.Statistics.Distributions
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.1.4
C#
public BurrDistribution(
	double c,
	double k,
	double scale = 1
)

Parameters

c  Double
The first shape parameter of the distribution.
k  Double
The second shape parameter of the distribution.
scale  Double  (Optional)
Optional. The scale parameter of the distribution. Must be greater than zero. The default is 1.

Exceptions

ArgumentOutOfRangeException

c is less than or equal to zero.

-or-

k is less than or equal to zero.

-or-

scale is less than or equal to zero.

See Also