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

定义

反 F 分布公式计算 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

F 分布的概率。 可接受的范围为 0 到 1。

firstDegreeOfFreedom
Int32

第一个自由度。

secondDegreeOfFreedom
Int32

第二个自由度。

返回

F 分布的 F 值。

示例

以下代码演示如何使用此公式。

Dim result As Double = Chart1.DataManipulator.Statistics.InverseFDistribution(.05, 15, 30)  
double result = Chart1.DataManipulator.Statistics.InverseFDistribution(.05, 15, 30);  

适用于