WEIBULL

The WEIBULL function returns the Weibull distribution. The Weibull distribution is one of the continuous probability distributions.

WEIBULL(non-neg-x-value, alpha, beta, form-type)

non-neg-x-value: A number value representing the x value at which you want to evaluate the function. non-neg-x-value must be greater than or equal to 0.

alpha: A number value representing the parameter describing the shape parameters of the distribution. alpha must be greater than 0.

beta: A number value representing the parameter describing the scale of the distribution. beta must be greater than 0.

form-type: A modal value that indicates which form of the exponential function to provide.

cumulative form (TRUE or 1): Return the value of the cumulative distribution form.

probability density form (FALSE or 0): Return the value of the probability density form.

Notes

Examples

=WEIBULL (1.5, 0.5, 2, 1) returns 0.579379973945885, the result of the cumulative distribution form of the Weibull function for the given values.

=WEIBULL (1.5, 0.5, 2, 0) returns 0.121422542634445, the result of the probability density form of the Weibull function for the given values.