fpdf

Compute F distribution probability density function values.

Syntax

d=fpdf(x,m,n)

Inputs

x
Values of the distribution random variable.
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

d
Probability density values.

Examples

Simple fpdf example:

x = 3;
m=30;
n=20;
d=fpdf(x,m,n)
d = 0.012721
Vector fpdf example:
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