ExcelFunctionsNormDist Method |
Returns the normal 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 NormDist(
double x,
double mean,
double standardDev,
bool cumulative
)
Parameters
- x Double
- The value at which to evaluate the distribution.
- mean Double
- The mean of the distribution.
- standardDev Double
- The standard deviation of the distribution.
- cumulative Boolean
- to return the cumulative distribution value; to return the density.
Return Value
DoubleThe requested normal distribution value.
See Also