求numpy数组最大值
时间: 2024-04-30 11:16:33 浏览: 101
Learning-NumPy-Array-Supercharge-your-scientific-Python-computations-by-understanding-how-to-use-the-NumPy-library-effec ....pdf
要求一个numpy数组的最大值,可以使用numpy库中的`np.max()`函数。该函数可以接受一个numpy数组作为参数,并返回数组中的最大值。
以下是使用numpy库求解numpy数组最大值的示例代码:
```python
import numpy as np
# 创建一个numpy数组
arr = np.array([1, 2, 3, 4, 5])
# 求解数组的最大值
max_value = np.max(arr)
print("数组的最大值为:", max_value)
```
输出结果为:
```
数组的最大值为: 5
```
阅读全文