Click or drag to resize

GammaWithShapeScale Method

Constructs a Gamma distribution from a shape and scale parameter. The distribution will be initialized with the default random number generator.

Namespace: Altaxo.Calc.Distributions
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static Gamma WithShapeScale(
	double shape,
	double scale,
	Random randomSource = null
)

Parameters

shape  Double
The shape (k) of the Gamma distribution. Range: k ≥ 0.
scale  Double
The 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.WithShapeScale(System.Double,System.Double,System.Random)"]

See Also