Returns the inverse of the discrete uniform cumulative probability distribution function.

Namespace: Imsl.Stat
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.0.0

Syntax

C#
public static int DiscreteUniform(
	double p,
	int n
)
Visual Basic (Declaration)
Public Shared Function DiscreteUniform ( _
	p As Double, _
	n As Integer _
) As Integer
Visual C++
public:
static int DiscreteUniform(
	double p, 
	int n
)

Parameters

p
Type: System..::.Double
A double scalar value representing the probability for which the inverse discrete uniform function is to be evaluated.
n
Type: System..::.Int32
An int scalar value representing the upper limit of the discrete uniform distribution.

Return Value

An int scalar value. The probability that a discrete uniform random variable takes a value less than or equal to this returned value is p.

See Also