wblinv

Compute Weibull distribution inverse cumulative distribution function values.

Syntax

x=wblinv(p,a,b)

Inputs

p
Probability values.
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

x
Values of the distribution random variable.

Examples

Single value wblinv example:
p = 0.4;
a = 2;
b = 5;
x = wblinv(p,a,b)
x = 1.7486
Vector wblinv example:
p = [0.1:0.1:0.9];
a = 2;
b = 5;
x = wblinv(p,a,b)
x = [Matrix] 1 x 7
1.2752 1.4817 1.6274 1.7486 1.8586 1.9653 2.0756 2.1997 2.3631