Inverse Gamma Distribution Constructor
Constructs a new InverseGammaDistribution with the specified
shape and scale parameter.
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 InverseGammaDistribution(
double shape,
double scale
)
Parameters
- shape Double
- The shape parameter of the distribution. Must be strictly greater than zero.
- scale Double
- The scale parameter. Must be strictly greater than zero.
Exceptions
ArgumentOutOfRangeException | shape is less than or equal to zero.
-or- scale is less than zero. |