[]
        
(Showing Draft Content)

WEIBULL.DIST

This function returns the two-parameter Weibull distribution, often used in reliability analysis.

Syntax

WEIBULL.DIST(x, alpha, beta, cumulative)

Arguments

This function has these arguments:

Argument

Description

x

[Required] Value at which to evaluate the distribution

alpha

[Required] Scale parameter of the distribution, represented by alpha

beta

[Required] Shape parameter of the distribution, represented by beta

cumulative

[Required] Logical value that determines the form of the function. If cumulative is TRUE, then this function returns the cumulative distribution function; if FALSE, it returns the probability mass function

Examples

WEIBULL.DIST(3,D4,D5,FALSE)

WEIBULL.DIST(50,10,20,TRUE)