WorksheetFunction.F_Dist Method (Excel)
Returns the F probability distribution.
Version Information
추가된 버전: Excel 2010
Syntax
식 .F_Dist(Arg1, Arg2, Arg3, Arg4)
식 A variable that represents a WorksheetFunction object.
Parameters
Name |
Required/Optional |
Data Type |
Description |
---|---|---|---|
Arg1 |
필수 |
Double |
X - The value at which to evaluate the function. |
Arg2 |
필수 |
Double |
Deg_freedom1 - The numerator degrees of freedom. |
Arg3 |
필수 |
Double |
Deg_freedom2 - The denominator degrees of freedom. |
Arg4 |
선택 |
Variant |
Cumulative - A logical value that determines the form of the function. If cumulative is TRUE, F_DIST returns the cumulative distribution function; if FALSE, it returns the probability density function. |
Return Value
Double
Remarks
If any argument is nonnumeric, F_DIST returns the #VALUE! error value.
If x is negative, F_DIST returns the #NUM! error value.
If deg_freedom1 or deg_freedom2 is not an integer, it is truncated.
If deg_freedom1 < 1, F_DIST returns the #NUM! error value.
If deg_freedom < 1, F_DIST returns the #NUM! error value.