Click or drag to resize

NormalDistributionCDF(Double, Double, Double) Method

Computes the cumulative distribution function (CDF) for a normal distribution with the given parameters.

Namespace: Altaxo.Calc.Probability
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3448.0 (4.8.3448.0)
Syntax
C#
public static double CDF(
	double z,
	double m,
	double s
)

Parameters

z  Double
The value at which to evaluate the CDF.
m  Double
Mean value.
s  Double
Standard deviation.

Return Value

Double
The value of the cumulative distribution function at z.
See Also