cdfWeibull

Syntax

cdfWeibull(alpha, beta, X)

Arguments

The scale parameter alpha and beta are both positive floating numbers.

X is a numeric scalar or vector.

Details

Return the value of the cumulative distribution function of a Weibull distribution.

Examples

$ cdfWeibull(2.31, 0.627, [0.001, 0.5, 0.999]);
[0, 0.447241, 0.946762]

$ cdfWeibull(2.31,0.627, [0.1, 0.3, 0.5, 0.7, 0.9]);
[0.014295, 0.166535, 0.447241, 0.724646, 0.90021]