TransformedGammaDistribution Constructor

Constructs a new TransformedGammaDistribution with the specified shape and scale parameters.

Definition

Namespace: Numerics.NET.Statistics.Distributions
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
public TransformedGammaDistribution(
	double shape1,
	double shape2,
	double scale
)

Parameters

shape1  Double
The first shape parameter of the distribution. Must be strictly greater than zero.
shape2  Double
The second shape parameter of the distribution. Must be strictly greater than zero.
scale  Double
The scale parameter. Must be strictly greater than zero.

Remarks

All parameters must be strictly greater than zero.

Exceptions

ArgumentOutOfRangeException

shape1 is less than or equal to zero.

-or-

shape2 is less than or equal to zero.

-or-

scale is less than or equal to zero.

See Also