共用方式為


StatisticFormula.TDistribution(Double, Int32, Boolean) 方法

定義

t 分佈公式會計算學生之 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,則會使用一尾分佈, 否則會使用二尾分佈。

傳回

Double

t 分佈函數機率。

範例

下列程式碼示範如何使用這個公式。

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

適用於