Click or drag to resize

ExcelFunctionsGammaDist Method

Returns the gamma distribution value for the specified parameters.

Namespace: Altaxo.Calc
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public static double GammaDist(
	double x,
	double alpha,
	double beta,
	bool cumulative
)

Parameters

x  Double
The value at which to evaluate the distribution.
alpha  Double
The shape parameter.
beta  Double
The scale parameter used by Excel semantics.
cumulative  Boolean
to return the cumulative distribution value; to return the density.

Return Value

Double
The requested gamma distribution value.
See Also