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

第二个自由度。

返回

F 分布的概率。

示例

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

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

适用于