WorksheetFunction.F_Inv(Double, Double, Double) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns the inverse of the F probability distribution.
public:
double F_Inv(double Arg1, double Arg2, double Arg3);
public double F_Inv (double Arg1, double Arg2, double Arg3);
Public Function F_Inv (Arg1 As Double, Arg2 As Double, Arg3 As Double) As Double
Parameters
- Arg1
- Double
Probability - A probability associated with the F cumulative distribution.
- Arg2
- Double
Deg_freedom1 - The numerator degrees of freedom.
- Arg3
- Double
Deg_freedom2 - The denominator degrees of freedom.
Returns
Remarks
If any argument is nonnumeric, F_Inv returns the #VALUE! error value.
If probability < 0 or probability > 1, F_Inv returns the #NUM! error value.
If deg_freedom1 or deg_freedom2 is not an integer, it is truncated.
If deg_freedom1 < 1, or deg_freedom2 < 1, F_Inv returns the #NUM! error value.