将80*4*80矩阵变为4*80*80
时间: 2023-08-31 17:08:56 浏览: 64
基于STM32F103的4*5矩阵按键
5星 · 资源好评率100%
可以使用reshape函数将80*4*80的矩阵变为4*80*80的矩阵。具体实现如下:
```python
import numpy as np
# 构造一个80*4*80的矩阵
matrix = np.random.rand(80, 4, 80)
# 使用reshape函数将矩阵变为4*80*80
new_matrix = np.reshape(matrix, (4, 80, 80))
print(new_matrix.shape)
```
运行结果为:(4, 80, 80)。
阅读全文