次の方法で共有


StatisticFormula.InverseFDistribution(Double, Int32, Int32) メソッド

定義

逆 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

2 番目の自由度。

戻り値

F 分布の F 値。

次のコードは、この数式の使用方法を示しています。

Dim result As Double = Chart1.DataManipulator.Statistics.InverseFDistribution(.05, 15, 30)  
double result = Chart1.DataManipulator.Statistics.InverseFDistribution(.05, 15, 30);  

適用対象