Click or drag to resize

BinomialDistributionCDF(Double, Double, Int32) Method

Returns the cumulative distribution function (CDF) of a binomial distribution.

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 x,
	double p,
	int n
)

Parameters

x  Double
The value at which to evaluate the CDF.
p  Double
The success probability p in the range [0, 1].
n  Int32
The number of trials.

Return Value

Double
The probability that a binomially distributed random variable is less than or equal to x.
See Also