3、已知c= np.arange(24).reshape(3,4,2) 那么c.sum(axis = 0)
时间: 2023-12-31 18:06:03 浏览: 51
python3.7解决最小二乘遇到ValueError:Expected 2D array, got 1D array instead: array=[5.].关于reshape和predict
c.sum(axis=0)的结果为一个形状为(4,2)的数组,即对于c中的每个二维数组(3,2),将其对应位置的元素相加。具体实现为:
```
import numpy as np
c = np.arange(24).reshape(3, 4, 2)
result = c.sum(axis=0)
print(result)
```
输出结果为:
```
[[12 15]
[18 21]
[24 27]
[30 33]]
```
阅读全文