IDAX.PHYPER - Cumulative hypergeometric distribution

The PHYPER function returns the probability that the value of a variable that follows the geometric distribution is smaller or equal to x.

Syntax

IDAX.PHYPER(BIGINT x, BIGINT wu, BIGINT bu, BIGINT N)

Parameter descriptions

x
Mandatory.
The number of white balls that are drawn without replacement from an urn that contains black balls and white balls.
Data type: BIGINT
wu
Mandatory.
The number of white balls in the urn.
If wu is negative, PHYPER(x,wu,bu,N) is null for all x values and N values.
Min: 0
Data type: BIGINT
bu
Mandatory.
The number of black balls in the urn.
If bu is negative, PHYPER(x,wu,bu,N) is null for all x values and N values.
Min: 0
Data type: BIGINT
N
Mandatory.
The number of balls that drawn from the urn without replacement.
If N is 0 or less, PHYPER(x,wu,bu,N) is null for all x values, wu values, and bu values.
Min: 1
Data type: BIGINT

Returned information

DECFLOAT(16) for the cumulative probability distribution from minus infinity to point x.