StatisticFormula.TDistribution(Double, Int32, Boolean) メソッド

定義

t 分布式は、Student の t 分布の確率を計算します。

public:
 double TDistribution(double value, int degreeOfFreedom, bool oneTail);
public double TDistribution(double value, int degreeOfFreedom, bool oneTail);
member this.TDistribution : double * int * bool -> double
Public Function TDistribution (value As Double, degreeOfFreedom As Integer, oneTail As Boolean) As Double

パラメーター

value
Double

t- 分布が必要な値。

degreeOfFreedom
Int32

自由度。

oneTail
Boolean

trueに設定すると、片側分布が使用されます。 それ以外の場合は、両側分布が使用されます。

返品

t 分布関数確率。

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

Dim result As Double = Chart1.DataManipulator.Statistics.TDistribution(1.96, 30, true)  
double result = Chart1.DataManipulator.Statistics.TDistribution(1.96, 30, true);  

適用対象