本文简要介绍 python 语言中 scipy.special.log1p
的用法。
用法:
scipy.special.log1p(x, out=None) = <ufunc 'log1p'>#
计算当 x 接近零时使用的 log(1 + x)。
- x: array_like
实值或复值输入。
- out: ndarray,可选
函数结果的可选输出数组。
- 标量或 ndarray
log(1 + x)
的值。
参数 ::
返回 ::
例子:
>>> import numpy as np >>> import scipy.special as sc
对于接近 0 的
x
,它比直接使用log(1 + x)
更准确。请注意,在下面的示例中,1 + 1e-17 == 1
为双精度。>>> sc.log1p(1e-17) 1e-17 >>> np.log(1 + 1e-17) 0.0
相关用法
- Python SciPy special.logsumexp用法及代码示例
- Python SciPy special.log_expit用法及代码示例
- Python SciPy special.logit用法及代码示例
- Python SciPy special.log_softmax用法及代码示例
- Python SciPy special.log_ndtr用法及代码示例
- Python SciPy special.laguerre用法及代码示例
- Python SciPy special.legendre用法及代码示例
- Python SciPy special.lambertw用法及代码示例
- Python SciPy special.exp1用法及代码示例
- Python SciPy special.expn用法及代码示例
- Python SciPy special.ncfdtri用法及代码示例
- Python SciPy special.gamma用法及代码示例
- Python SciPy special.y1用法及代码示例
- Python SciPy special.y0用法及代码示例
- Python SciPy special.ellip_harm_2用法及代码示例
- Python SciPy special.i1e用法及代码示例
- Python SciPy special.smirnovi用法及代码示例
- Python SciPy special.ker用法及代码示例
- Python SciPy special.ynp_zeros用法及代码示例
- Python SciPy special.k0e用法及代码示例
- Python SciPy special.j1用法及代码示例
- Python SciPy special.expit用法及代码示例
- Python SciPy special.polygamma用法及代码示例
- Python SciPy special.nbdtrik用法及代码示例
- Python SciPy special.nbdtrin用法及代码示例
注:本文由纯净天空筛选整理自scipy.org大神的英文原创作品 scipy.special.log1p。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。