Weibull distribution functions
PDFWeibull(x,alpha,beta)
PDFWeibull(x,alpha,beta) returns the probability density at the value x of the Weibull distribution with shape parameter alpha and scale parameter beta.
This equals the Excel function Weibull.DIST(x,alpha,beta,FALSE).
The equation for the Weibull probability density function is:
The following graph shows the PDFWeibull distribution function for different values of the shape parameter alpha with scale parameter beta=1
Calculator
Graph
CDFWeibull(x,alpha,beta)
CDFWeibull(x,alpha,beta) returns the value at x of the cumulative Weibull distribution with parameters alpha and beta.
This equals the Excel function Weibull.DIST(x,alpha,beta,TRUE).
The equation for the Weibull cumulative distribution function is:
Calculator
Graph
RndWeibull(alpha,beta)
RndWeibull(alpha,beta) returns a random number of the Weibull distribution with parameters alpha and beta.