GammaWithShapeRate Method |
Constructs a Gamma distribution from a shape and inverse scale parameter. The distribution will
be initialized with the default random number generator.
Namespace: Altaxo.Calc.DistributionsAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax public static Gamma WithShapeRate(
double shape,
double rate,
Random randomSource = null
)
Parameters
- shape Double
- The shape (k, α) of the Gamma distribution. Range: α ≥ 0.
- rate Double
- The rate or inverse scale (β) of the Gamma distribution. Range: β ≥ 0.
- randomSource Random (Optional)
- The random number generator which is used to draw random samples. Optional, can be null.
Return Value
Gamma[Missing <returns> documentation for "M:Altaxo.Calc.Distributions.Gamma.WithShapeRate(System.Double,System.Double,System.Random)"]
See Also