ExcelFunctionsGammaDist Method |
Returns the gamma distribution value for the specified parameters.
Namespace: Altaxo.CalcAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntaxpublic 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
DoubleThe requested gamma distribution value.
See Also