Menu
×
   ❮     
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY AWS CYBERSECURITY DATA SCIENCE
     ❯   

NumPy 对数


对数

NumPy 提供函数用于计算以 2、e 和 10 为底的对数。

我们还将探讨如何通过创建自定义 ufunc 来计算任意底数的对数。

如果无法计算对数,所有对数函数都将在元素中放置 -inf 或 inf。


以 2 为底的对数

使用 log2() 函数计算以 2 为底的对数。

示例

查找以下数组所有元素以 2 为底的对数

import numpy as np

arr = np.arange(1, 10)

print(np.log2(arr))
自己尝试 »

注意:arange(1, 10) 函数返回一个数组,该数组包含从 1(包含)到 10(不包含)的整数。


以 10 为底的对数

使用 log10() 函数计算以 10 为底的对数。

示例

查找以下数组所有元素以 10 为底的对数

import numpy as np

arr = np.arange(1, 10)

print(np.log10(arr))
自己尝试 »

自然对数,或以 e 为底的对数

使用 log() 函数计算以 e 为底的对数。

示例

查找以下数组所有元素以 e 为底的对数

import numpy as np

arr = np.arange(1, 10)

print(np.log(arr))
自己尝试 »

任意底数的对数

NumPy 没有提供任何函数来计算任意底数的对数,因此我们可以使用 frompyfunc() 函数以及内置函数 math.log(),该函数具有两个输入参数和一个输出参数

示例

from math import log
import numpy as np

nplog = np.frompyfunc(log, 2, 1)

print(nplog(100, 15))
自己尝试 »


×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2024 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.