Share via


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

第二自由度。

傳回

Double

F 分佈的 F 值。

範例

下列程式碼示範如何使用這個公式。

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

適用於