wblinv
Compute Weibull distribution inverse cumulative distribution function values.
Syntax
x=wblinv(p,a,b)
Inputs
- p
- Probability values.
- a
- Scale parameter (default = 1).
- b
- Shape parameter (default = 1).
Outputs
- x
- Values of the distribution random variable.
Examples
p = 0.4;
a = 2;
b = 5;
x = wblinv(p,a,b)
x = 1.7486
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