fpdf
Compute F distribution probability density function values.
Syntax
d=fpdf(x,m,n)
Inputs
- x
 - Values of the distribution random variable.
 - m
 - Degrees of freedom.
 - n
 - Degrees of freedom.
 
Outputs
- d
 - Probability density values.
 
Examples
Simple fpdf example:
x = 3;
m=30;
n=20;
d=fpdf(x,m,n)
      d = 0.012721
      x = [1:1:7];
m=30;
n=20;
d=fpdf(x,m,n)d = [Matrix] 1 x 7
0.96695 0.12498 0.012721 0.0017191 0.0003048 6.7301e-05 1.7694e-05