Generates F distribution inverse cumulative density function values at specified locations. |
||
Syntax |
X = F_InvCDF(Prob, m, n) |
|
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. |
|
m |
First degrees of freedom parameter. A positive integer. |
|
n |
Second degrees of freedom parameter. A positive integer. |
|
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 1 |
Find the F inverse cumulative density function for probabilities 0.1, 0.3, and 0.8 with parameters m = 2 and n = 5. |
|
Syntax |
||
x = F_InvCDF([0.1,0.3,0.8],2,5) |
||
Results |
||
x = 0.10761 0.38337 2.2591 |
||
See Also: |