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

2 番目の自由度。

戻り値

F 分布の確率。

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

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

適用対象