scipy.special.ndtr#
- scipy.special.ndtr(x, out=None) = <ufunc 'ndtr'>#
标准正态分布的累积分布。
返回标准正态概率密度函数下方的面积,从负无穷积分到x
\[\frac{1}{\sqrt{2\pi}} \int_{-\infty}^x \exp(-t^2/2) dt\]- 参数 :
- x类似数组的实数或复数
自变量
- outndarray,可选
函数结果的可选输出数组
- 返回 :
- 标量或 ndarray
以x评估的正态 CDF 值
参见
log_ndtr
ndtr 的对数
ndtri
ndtr 的逆,标准正态百分位函数
erf
误差函数
erfc
1 - erf
scipy.stats.norm
正态分布
示例
在某一点上评估
ndtr
。>>> import numpy as np >>> from scipy.special import ndtr >>> ndtr(0.5) 0.6914624612740131
为x提供 NumPy 数组或列表,在多个点评估函数。
>>> ndtr([0, 0.5, 2]) array([0.5 , 0.69146246, 0.97724987])
绘制该函数的图形。
>>> import matplotlib.pyplot as plt >>> x = np.linspace(-5, 5, 100) >>> fig, ax = plt.subplots() >>> ax.plot(x, ndtr(x)) >>> ax.set_title(r"Standard normal cumulative distribution function $\Phi$") >>> plt.show()