DiscreteDistribution.DistributionFunction Method

Gets the probability of obtaining an outcome less than or equal to a specified value.

Definition

Namespace: Extreme.Statistics.Distributions
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public abstract double DistributionFunction(
	int n
)

Parameters

n  Int32
An integer value.

Return Value

Double
The probability of obtaining an outcome less than or equal to a specified value.

Remarks

The distribution function is the cumulative sum of the Probability(Int32) function up to and including n.

See Also