IDAX.QBINOM_H - High-tail inverse binomial distribution
The QBINOM_H function returns the value x of a variable that follows the binomial distribution for which the probability of being greater than x is equal to the specified percentage.
Syntax
IDAX.QBINOM_H(DOUBLE percentage, INT8 N, DOUBLE p)Parameter descriptions
- percentage
- Mandatory.
- N
- Mandatory.
- p
- Mandatory.
QBINOM_H(perc,N,p) = QBINOM(1-perc,N,p) for all positive x values, positive N values, and p values in the range of 0 - 1.
If PBINOM_H(x,N,p)=perc, QBINOM_H(perc,N,p)=x for all positive x values, positive N values, and p values in the range of 0 - 1.
Returned information
INT8 the point x where PBINOM_H(x,N,p)=percentage.