WorksheetFunction.Norm_S_Dist(Double, Boolean) 方法

定义

返回标准正态累积分布函数。 该分布的平均值为 0(零),标准偏差为 1。 使用此函数代替标准法线曲线区域的表。

public:
 double Norm_S_Dist(double Arg1, bool Arg2);
public double Norm_S_Dist (double Arg1, bool Arg2);
Public Function Norm_S_Dist (Arg1 As Double, Arg2 As Boolean) As Double

参数

Arg1
Double

z - 要计算其分布的值。

Arg2
Boolean

cumulative - 一个决定函数形式的逻辑值。 如果 cumulative 为 true,Norm_S_Dist返回累积分布函数; 如果为 false,则返回概率质量函数。

返回

注解

如果 z 为非数值, Norm_S_Dist 返回 #VALUE! 。

标准正态分布密度函数的计算公式为:

图 1:标准法线密度函数的公式

适用于