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);