InverseGammaDistribution Constructor

Constructs a new InverseGammaDistribution with the specified shape and scale parameter.

Definition

Namespace: Numerics.NET.Statistics.Distributions
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
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

ArgumentOutOfRangeException

shape is less than or equal to zero.

-or-

scale is less than zero.

See Also