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