Returns the values of the Weibull distribution for the given number.
Sample Usage
WEIBULL.DIST(105,20,100,TRUE)
WEIBULL.DIST(A1, A2, A3, FALSE)
Syntax
WEIBULL.DIST(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
WEIBULL.DIST(105,20,100,TRUE) returns a value of 0.9295.
WEIBULL.DIST(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.