Transformed Gamma Distribution Constructor
Constructs a new TransformedGammaDistribution with the specified
shape and scale 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 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. |