Click or drag to resize

ExcelFunctionsNormDist Method

Returns the normal 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 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

Double
The requested normal distribution value.
See Also