Evaluates the F probability density function.
Namespace: Imsl.StatAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax public static double F(
double x,
double dfn,
double dfd
)
Public Shared Function F (
x As Double,
dfn As Double,
dfd As Double
) As Double
public:
static double F(
double x,
double dfn,
double dfd
)
static member F :
x : float *
dfn : float *
dfd : float -> float
Parameters
- x
- Type: SystemDouble
A double, the argument at which
the function is to be evaluated.
- dfn
- Type: SystemDouble
A double, the numerator degrees
of freedom. It must be positive.
- dfd
- Type: SystemDouble
A double, the denominator degrees
of freedom. It must be positive.
Return Value
Type:
DoubleA
double, the value of the probability density function at
x.
Remarks The probability density function of the F distribution is
where
and
are the shape parameters
dfn and
dfd and
is
the gamma function,
See Also