WEIBULL.DIST function
WEIBULL.DIST(X,
Alpha, Beta, IsCumulative) WEIBULL.DIST(X;
Alpha; Beta; IsCumulative)
X
Number or { Number }
The value at which to evaluate the function.
Alpha
Number or { Number }
A parameter to the distribution.
Beta
Number or { Number }
A parameter to the distribution.
IsCumulative
Logical or { Logical }
FALSE to calculate the probability density function and TRUE to calculate the cumulative distribution function.
Returns
Number or { Number }
A value for a Weibull distribution.
Returns a value for a Weibull distribution.
Examples
WEIBULL.DIST(2.5, 3, 4,
TRUE)WEIBULL.DIST(2,5; 3;
4; TRUE)
Returns roughly 0.22.
WEIBULL.DIST(2.5, 3, 4,
FALSE)WEIBULL.DIST(2,5;
3; 4; FALSE)
Returns roughly 0.23.