wblcdf

Compute Weibull distribution cumulative distribution function values.

Syntax

p=wblcdf(x,a,b)

Inputs

x
Values of the distribution random variable.
Type: double
Dimension: scalar | vector | matrix
a
Scale parameter (default = 1).
Type: double
Dimension: scalar | vector | matrix
b
Shape parameter (default = 1).
Type: double
Dimension: scalar | vector | matrix

Outputs

p
Cumulative probability values.

Examples

Single value wblcdf example:
x = 2.0;
a = 2;
b = 5;
p = wblcdf(x,a,b)
p = 0.63212
Vector wblcdf example:
x = [1:0.5:4];
a = 2;
b = 5;
p = wblcdf(x,a,b)
p = [Matrix] 1 x 7
0.030767 0.21125 0.63212 0.95272 0.9995 1 1