共用方式為


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

定義

F 分佈公式會計算 F 分佈的機率。

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

參數

value
Double

您需要其分佈狀況的 F 值。

firstDegreeOfFreedom
Int32

第一自由度。

secondDegreeOfFreedom
Int32

第二自由度。

傳回

Double

F 分佈的機率。

範例

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

Dim result As double = Chart1.DataManipulator.Statistics.FDistribution(6.31, 15, 7)  
double result = Chart1.DataManipulator.Statistics.FDistribution(6.31, 15, 7);  

適用於