共用方式為


StatisticFormula.NormalDistribution(Double) 方法

定義

常態分佈公式會計算標準常態累計分佈的值。 分佈的平均值為 0,而其標準差則為 1。

public:
 double NormalDistribution(double zValue);
public double NormalDistribution (double zValue);
member this.NormalDistribution : double -> double
Public Function NormalDistribution (zValue As Double) As Double

參數

zValue
Double

需要常態分佈的值。

傳回

標準常態累計分佈的值。

範例

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

Dim result As Double = Chart1.DataManipulator.Statistics.NormalDistribution(1.96)  
double result = Chart1.DataManipulator.Statistics.NormalDistribution(1.96);  

適用於