IDAX.PWEIBULL - Cumulative Weibull distribution
The PWEIBULL function returns the probability that the value of a variable that follows the Weibull distribution is smaller or equal to x.
Syntax
IDAX.PWEIBULL(DOUBLE x, DOUBLE scale, DOUBLE
kShape)
Parameter descriptions
- x
- Mandatory.
- scale
- Mandatory.
- kShape
- Mandatory.
The cumulative Weibull distribution has the closed form PWEIBULL(x,scale,kShape)=1-exp(- (x/scale)^kShape) for all positive x values, positive scale values, and positive kShape values.
The Exponential distribution is a special case of the Weibull distribution: PWEIBULL(x,scale,1)=PEXP(x,scale).
If x is less than 0, or if scale or shape are 0 or less, PWEIBULL(x,scale,kShape) is null.
Returned information
DOUBLE the probability density at point x.