IDAX.QWEIBULL - Inverse Weibull distribution

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

Syntax

IDAX.QWEIBULL(DOUBLE percentage, DOUBLE scale, DOUBLE
kShape)

Parameter descriptions

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

If PWEIBULL(x,scale,kShape)=perc, QWEIBULL(perc,scale,kShape)=x for all positive x values, positive scale values, and positive kShape values.

Returned information

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