python的reshape
时间: 2023-10-13 07:19:29 浏览: 75
Python reshape的用法及多个二维数组合并为三维数组的实例
Python中的reshape是用于改变数组或矩阵的形状的方法。它可以用于numpy库中的多维数组对象。通过reshape,我们可以改变数组的维度,而不改变其元素的总数。具体使用方法如下:
```python
import numpy as np
# 一维数组的reshape
arr = np.array([1, 2, 3, 4, 5, 6])
reshaped_arr = arr.reshape(2, 3) # 将一维数组转换为2行3列的二维数组
print(reshaped_arr)
# 结果:
# [[1 2 3]
# [4 5 6]]
# 多维数组的reshape
matrix = np.array([[1, 2, 3], [4, 5, 6]])
reshaped_matrix = matrix.reshape(3, 2) # 改变矩阵的形状为3行2列
print(reshaped_matrix)
# 结果:
# [[1 2]
# [3 4]
# [5 6]]
```
在使用reshape时,需要确保新形状和原始数组/矩阵中的元素总数相匹配,否则会报错。
阅读全文