DiscreteDistribution.Probability Method

Definition

Namespace: Extreme.Statistics.Distributions
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23

Overload List

Probability(Int32) Returns the probability of obtaining a specific integer value in the distribution.
Probability(Int32, Int32) Gets the probability of obtaining a sample that falls within the specified interval from the distribution.

DiscreteDistribution.Probability(Int32)

Returns the probability of obtaining a specific integer value in the distribution.
C#
public abstract double Probability(
	int n
)

Parameters

n  Int32
An integer value.

Return Value

Double
The probability of obtaining the specified value.

Remarks

This method represents the probability function of the distribution.

DiscreteDistribution.Probability(Int32, Int32)

Gets the probability of obtaining a sample that falls within the specified interval from the distribution.
C#
public virtual double Probability(
	int lowerBound,
	int upperBound
)

Parameters

lowerBound  Int32
The inclusive lower bound of the interval.
upperBound  Int32
The exclusive upper bound of the interval.

Return Value

Double
The total probability of obtaining a value greater than or equal to lowerBound and less than upperBound.

See Also