IMSL C# Numerical Library

Cdf.DiscreteUniformProb Method 

Evaluates the discrete uniform probability density function.

public static double DiscreteUniformProb(
   int x,
   int n
);

Parameters

x
An int argument for which the discrete uniform probability density function is to be evaluated. x should be a value between the lower limit 0 and upper limit n
n
An int scalar value representing the upper limit of the discrete uniform distribution.

Return Value

A double scalar value representing the probability that a discrete uniform random variable takes a value equal to x.

See Also

Cdf Class | Imsl.Stat Namespace | Example