Initializes a new instance of a Gamma distribution with the given parameters.

Namespace: Meta.Numerics.Statistics.Distributions
Assembly: Meta.Numerics (in Meta.Numerics.dll) Version: 2.1.0.0 (2.1.0.0)

Syntax

            
 C#  Visual Basic  Visual C++  F# 
public GammaDistribution(
	double shape,
	double scale
)
Public Sub New ( _
	shape As Double, _
	scale As Double _
)
public:
GammaDistribution(
	double shape, 
	double scale
)
new : 
        shape : float * 
        scale : float -> GammaDistribution

Parameters

shape
Double
The shape parameter, which must be positive.
scale
Double
The scale parameter, which must be positive.

See Also