InverseGammaDistribution 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#
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

ArgumentOutOfRangeExceptionshape is less than or equal to zero.

-or-

scale

is less than zero.

See Also