Generates uniform distribution inverse cumulative density function values at specified locations. |
||
Syntax |
X = UnifInvCDF(Prob, a, b) |
|
Arguments |
Name |
Description |
Prob |
A scalar, vector or matrix of probabilities in the interval (0,1) at which the inverse cumulative density function is to be evaluated. |
|
a |
Lower end point of the distribution. A scalar. |
|
b |
Upper end point of the distribution. A scalar. |
|
Outputs |
Name |
Description |
X |
A scalar, vector or matrix of the inverse cumulative density function values for the given probabilities. The same size as Prob. |
|
Example |
Find the uniform inverse cumulative density function for probabilities 0.1, 0.3, and 0.8 with parameters a = 2 and b = 6. |
|
Syntax |
||
x = UnifInvCDF([0.1,0.3,0.8],2,6) |
||
Results |
||
x = 2.4 3.2 5.2 |
||
See Also: |