IDAX.QHYPER_H - High-tail inverse hypergeometric distribution
The QHYPER_H function returns the value x of a variable that follows the hypergeometric distribution for which the probability of being greater than x is equal to the specified percentage. x is the number of white balls that are drawn without replacement from an urn that contains black balls and white balls.
Syntax
IDAX.QHYPER_H(DOUBLE percentage, BIGINT wu, BIGINT bu, BIGINT
N)Parameter descriptions
- percentage
- Mandatory.
- wu
- Mandatory.
- bu
- Mandatory.
- N
- Mandatory.
QHYPER_H(percentage,wu,bu,N) = QHYPER(1-percentage,wu,bu,N) for percentage values in the range of 0 - 1, and for all positive wu values, positive bu values, and positive N values.
If PHYPER_H(x,wu,bu,N)=percentage, QHYPER_H(percentage,wu,bu,N)=x for all x values, and for all positive wu values, positive bu values, and positive N values.
Returned information
BIGINT the point x where PHYPER_H(x,wu,bu,N)=percentage.