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\]- 参数:
- xarray_like,实数或复数
参数
- 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()