numpy取幂
时间: 2023-06-21 15:22:11 浏览: 127
Numpy-ref-1.10.1
你可以使用 NumPy 的 power 函数来对一个数组进行幂运算。如果你只想对一个单独的数进行幂运算,也可以使用 Python 内置的 ** 运算符。
以下是示例代码:
```python
import numpy as np
# 对一个数组进行幂运算
arr = np.array([1, 2, 3, 4, 5])
power_arr = np.power(arr, 2)
print(power_arr) # 输出 [ 1 4 9 16 25]
# 对一个单独的数进行幂运算
x = 2
power_x = x ** 3
print(power_x) # 输出 8
```
阅读全文