Click or drag to resize
Accord.NET (logo)

IUnivariateDistributionDistributionFunction Method (Double, Double)

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
Assembly:  Accord.Statistics (in Accord.Statistics.dll) Version: 3.8.0
Syntax
double DistributionFunction(
	double a,
	double b
)
Request Example View Source

Parameters

a
Type: SystemDouble
The start of the semi-closed interval (a; b].
b
Type: SystemDouble
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