Python math.log1p() 方法



Python math.log1p() 方法用于计算 1 + x 的自然对数,其中 x 是传递给该方法的参数。在数学上,该方法表示为 -

\log1p\:(x)\:=\:\log_{e}({1\:+\:x})\:=\:\ln(1\:+\:x)

其中,e 是自然对数(欧拉数)的底数。例如,如果 x = 1,则 math.log1p(1) 返回 ln(1 + 1),该函数简化为 ln(2)。

注意:要使用此功能,您需要导入 math 模块。

语法

以下是 Python math.log1p() 方法的基本语法 -


 math.log1p(x)

参数

此方法接受整数或浮点数作为要计算 1 加 x 的自然对数的参数。

返回值

该方法返回 1 加 x 的自然对数。返回值是一个浮点数。

示例 1

在下面的示例中,我们计算 1 + 1 的自然对数,这意味着将一个正整数作为参数传递给 log1p() 方法 −


import math
result = math.log1p(1)
print("The result obtained is:", result) 	

输出

获得的输出如下 -

The result obtained is: 0.6931471805599453

示例 2

在这里,我们将一个负整数作为参数传递给 log1p() 方法。我们计算 1 − 0.5 − 的自然对数


import math
result = math.log1p(-0.5)
print("The result obtained is:", result) 	

输出

以下是上述代码的输出 -

The result obtained is: -0.6931471805599453

示例 3

在这个例子中,我们计算 1 + 1000 的自然对数,这是一个很大的数字 -


import math
result = math.log1p(1000)
print("The result obtained is:", result) 	

输出

我们得到的输出如下所示 -

The result obtained is: 6.90875477931522

示例 4

现在,我们使用变量 “x” 来存储参数。然后我们计算 1 + x − 的自然对数


import math
x = 2
result = math.log1p(x)
print("The result obtained is:", result) 	

输出

生成的结果如下所示 -

The result obtained is: 1.0986122886681096