Returns the values of the Weibull distribution for the given number.
Sample Usage
WEIBULLDIST(105,20,100,TRUE)
WEIBULLDIST(A1, A2, A3, FALSE)
Syntax
WEIBULLDIST(number, alpha, beta, cumulative)
- number - The input to the Weibull distribution function.
- alpha - A parameter to the distribution.
- beta - A parameter to the distribution.
- cumulative - A logical value that determines the form of the function.
Examples
WEIBULLDIST(105,20,100,TRUE) returns a value of 0.9295.
WEIBULLDIST(105,20,100,FALSE) returns a value of 0.0355.
Notes
- alpha and beta must be greater than 0.
- Set cumulative to TRUE to use the cumulative distribution function, and set it to FALSE to use the probability density function.