|
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
)
Function DistributionFunction (
a As Double,
b As Double
) As Double
Request Example
View SourceParameters
- 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:
DoubleRemarks
The Cumulative Distribution Function (CDF) describes the cumulative
probability that a given value or any value smaller than it will occur.
See Also