Review Note

Last Update: 06/01/2024 06:58 AM

Current Deck: python

Published

Fields:

Front
如何在Python中进行log化?
Back
  1. 在Python中使用numpy库里面提供了log函数来实现log化操作.
  2. log函数会返回输入数组元素的自然对数(底为e).
  3. 如果需要计算其他底数(例如10或2) 的对数,则需要使用numpy库提供了相应功能.
Code
```python
import numpy as np

创建一个数组

arr = np.array([1, 2, 3])

对数组元素取自然对数

print(np.log(arr)) # 输出:[0. 0.69314718 1.09861229]
```


Tags:

gpt py

Suggested Changes:

Deck Changes (Suggestion to move the Note to the following Deck):

Field Changes:

Tag Changes: