StatisticFormula.InverseFDistribution(Double, Int32, Int32) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
反 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
第二个自由度。
返回
F 分布的 F 值。
示例
以下代码演示如何使用此公式。
Dim result As Double = Chart1.DataManipulator.Statistics.InverseFDistribution(.05, 15, 30)
double result = Chart1.DataManipulator.Statistics.InverseFDistribution(.05, 15, 30);