StatisticFormula.InverseFDistribution(Double, Int32, Int32) 方法

定义

返回 F 累积分布的反函数。

public:
 double InverseFDistribution(double probability, int firstDegreeOfFreedom, int secondDegreeOfFreedom);
public double InverseFDistribution(double probability, int firstDegreeOfFreedom, int secondDegreeOfFreedom);
member this.InverseFDistribution : double * int * int -> double
Public Function InverseFDistribution (probability As Double, firstDegreeOfFreedom As Integer, secondDegreeOfFreedom As Integer) As Double

参数

probability
Double

alpha 值,即假设被拒绝的概率。 允许的范围为 0-1。

firstDegreeOfFreedom
Int32

第一级自由。

secondDegreeOfFreedom
Int32

第二级自由。

返回

double反向 F 分布函数中的值。

例外

条件:由于限制,无法使用指定的参数值继续计算。

注解

此方法返回给定 F 分布概率的 F 值。

在 F 检验中,可以使用 F 分布比较两个数据集的变化程度。

此方法可能会根据参数值返回异常。

适用于