StatisticFormula.FDistribution(Double, Int32, Int32) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
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
第二自由度。
傳回
F 分佈的機率。
範例
下列程式碼示範如何使用這個公式。
Dim result As double = Chart1.DataManipulator.Statistics.FDistribution(6.31, 15, 7)
double result = Chart1.DataManipulator.Statistics.FDistribution(6.31, 15, 7);