IDAX.QLOGIS - Inverse logistic distribution

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

Syntax

IDAX.QLOGIS(DOUBLE percentage, DOUBLE mean, DOUBLE
scale)

Parameter descriptions

percentage
Mandatory.
The requested limit of the percentage.
If percentage is not in the range of 0 - 1, QLOGIS(percentage,mean,scale) is null for all mean values and positive scale values.
Min: 0.00000000001
Max: 0.99999999999
Data type: DOUBLE
mean
Mandatory.
The mean value of the distribution.
Data type: DOUBLE
scale
Mandatory.
The scale of the distribution.
If scale is 0 or less, QLOGIS(percentage,mean,scale) is null for all percentage values and mean values.
Min: 0.000000001
Data type: DOUBLE

If PLOGIS(x,mean,scale)=perc, QLOGIS(perc,mean,scale)=x for all x values, mean values, and positive scale values.

Returned information

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