WEIBULL

WEIBULL probability density or cumulative distribution function of the Weibull distribution

Synopsis

WEIBULL(x,alpha,beta,cumulative)

Arguments

x: number

alpha: scale parameter

beta: scale parameter

cumulative: whether to evaluate the density function or the cumulative distribution function

Description

If the cumulative boolean is true it will return: 1 - exp (-(x/beta)^alpha),otherwise it will return (alpha/beta^alpha) * x^(alpha-1) * exp(-(x/beta^alpha)).

Note

If x < 0 this function returns a #NUM! error. If alpha <= 0 or beta <= 0 this function returns a #NUM! error.

Microsoft Excel Compatibility

This function is Excel compatible.

See also

POISSON.