python中对一个矩阵转置
时间: 2024-04-29 14:24:07 浏览: 85
Python 使用Numpy对矩阵进行转置的方法
在Python中,可以使用numpy库中的transpose函数来将矩阵转置。以下是一个示例代码:
```python
import numpy as np
# 定义一个3行2列的矩阵
matrix = np.array([[1, 2], [3, 4], [5, 6]])
# 转置矩阵
transposed_matrix = np.transpose(matrix)
print("原矩阵:")
print(matrix)
print("转置矩阵:")
print(transposed_matrix)
```
输出结果:
```
原矩阵:
[[1 2]
[3 4]
[5 6]]
转置矩阵:
[[1 3 5]
[2 4 6]]
```
阅读全文