当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python math.log1p()用法及代码示例


Python math.log1p() 方法

math.log1p() 方法是 math 模块的一个库方法,用于得到 1+x(以 e 为底)的自然对数,它接受一个数字并返回以 e 为底的 1+数字的自然对数。

注意:如果我们提供除数字以外的任何其他内容,该方法将返回一个 TypeError ——“TypeError:a float is required”。

math.log1p() 方法的语法:

    math.log1p(x)

参数:x– 是要计算其对数的数字。

返回值: float– 它返回一个浮点值,它是自然对数1 + x

例:

    Input:
    x = 21

    # function call
    print(math.log1p(x))

    Output:
    3.091042453358316

用于演示 math.log1p() 方法示例的 Python 代码

# python code to demonstrate example of 
# math.log1p() method

# importing math module
import math

# log1p()
x = 21
print("Natural logarithm of 1 +", x, " is = ", math.log1p(x))

x = 10.23
print("Natural logarithm of 1 +", x, " is = ", math.log1p(x))

输出

Natural logarithm of 1 + 21  is =  3.091042453358316
Natural logarithm of 1 + 10.23  is =  2.418588768750352


相关用法


注:本文由纯净天空筛选整理自 math.log1p() method with example in Python。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。