IDAX.QEXP - Inverse exponential distribution

The QEXP function returns the value x of a variable that follows the exponential distribution for which the probability of being smaller or equal to x is equal to the specified percentage.

Syntax

IDAX.QEXP(DOUBLE percentage, DOUBLE scale)

Parameter descriptions

percentage
Mandatory.
The requested limit of the percentage.
If percentage is not in the range of 0 - 1, QEXP(percentage,scale) is null for all scale values.
Min: 0.00000000001
Max: 0.99999999999
Data type: DOUBLE
scale
Mandatory.
The exponential scale.
If scale is 0 or less, QEXP(percentage,scale) is null for all percentage values.
Min: 0.00000000001
Data type: DOUBLE
If PEXP(x,scale)=perc, QEXP(perc,scale)=x.

Returned information

DOUBLE the point x where PEXP(x,scale)=percentage.