當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。