scipy.special.log1p#

scipy.special.log1p(x, out=None) = <ufunc 'log1p'>#

x 接近零时,计算 log(1 + x) 以便使用。

parameters:
xarray_like

实值或复值输入。

outndarray,可选

函数结果的可选输出数组。

returns:
标量或 ndarray

log(1 + x) 的值。

See also

expm1cosm1

Examples

>>> import numpy as np
>>> import scipy.special as sc

x 接近 0 时,它比直接使用 log(1 + x) 更准确。请注意,在下面的示例中,1 + 1e-17 == 1 为双精度。

>>> sc.log1p(1e-17)
1e-17
>>> np.log(1 + 1e-17)
0.0