Click or drag to resize
Accord.NET (logo)

UnivariateDiscreteDistributionDistributionFunction Method (Int32, Int32)

Gets the cumulative distribution function (cdf) for this distribution in the semi-closed interval (a; b] given as P(a < X ≤ b).

Namespace:  Accord.Statistics.Distributions.Univariate
Assembly:  Accord.Statistics (in Accord.Statistics.dll) Version: 3.8.0
Syntax
public virtual double DistributionFunction(
	int a,
	int b
)
Request Example View Source

Parameters

a
Type: SystemInt32
The start of the semi-closed interval (a; b].
b
Type: SystemInt32
The end of the semi-closed interval (a; b].

Return Value

Type: Double
Remarks
The Cumulative Distribution Function (CDF) describes the cumulative probability that a given value or any value smaller than it will occur.
See Also