finv

Compute F distribution inverse cumulative distribution function values.

Syntax

x=finv(p,m,n)

Inputs

p
Probability values.
Type: double
Dimension: scalar | vector | matrix
m
Degrees of freedom.
Type: integer
Dimension: scalar | vector | matrix
n
Degrees of freedom.
Type: integer
Dimension: scalar | vector | matrix

Outputs

x
Values of the distribution random variable.

Examples

Simple finv example:
p=0.6;
m=30;
n=20;
p = 0.6;
x = finv(p,m,n)
x = 1.1233
Vector tinv example:
p=[0.1:0.1:0.9];
m=30;
n=20;
x = finv(p,n)
x = [Matrix] 1 x 9
0.59977 0.71688 0.81565 0.91126 1.0114 1.1233 1.258 1.4385 1.7382