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.