|
GammaDistributionFromMean Method
|
Constructs a Gamma distribution using k and μ parameterization.
Namespace:
Accord.Statistics.Distributions.Univariate
Assembly:
Accord.Statistics (in Accord.Statistics.dll) Version: 3.8.0
Syntax public static GammaDistribution FromMean(
double alpha,
double mean
)
Public Shared Function FromMean (
alpha As Double,
mean As Double
) As GammaDistribution
Request Example
View SourceParameters
- alpha
- Type: SystemDouble
The shape parameter α = k. - mean
- Type: SystemDouble
The mean parameter μ = k/β.
Return Value
Type:
GammaDistributionA Gamma distribution constructed with the given parameterization.
See Also