TRY NEW VERSION

F_INV_RT

F_INV_RT(arg1, arg2, arg3) → { number }

Returns the inverse of the (right-tailed) F probability distribution: if p = F.DIST.RT(x,...), then F.INV.RT(p,...) = x.

Parameters:

Name Type Description
arg1 number

A probability associated with the F cumulative distribution, a number between 0 and 1 inclusive.

arg2 number

The numerator degrees of freedom, a number between 1 and 10^10, excluding 10^10.

arg3 number

The denominator degrees of freedom, a number between 1 and 10^10, excluding 10^10.

Returns:

Type
number

Example

Copy code
builder.CreateFile("xlsx");
var oWorksheet = Api.GetActiveSheet();
var oFunction = Api.GetWorksheetFunction();
oWorksheet.GetRange("A1").SetValue(oFunction.F_INV_RT(0.01, 6, 4));
builder.SaveFile("xlsx", "F_INV_RT.xlsx");
builder.CloseFile();

Resulting document