numpy中的ndassay支持矩阵转置吗
时间: 2024-05-16 11:15:00 浏览: 80
Python 使用Numpy对矩阵进行转置的方法
是的,NumPy中的ndarray对象可以通过调用T属性进行转置。例如,对于一个2维数组a,可以使用a.T来获取其转置矩阵。示例代码如下:
``` python
import numpy as np
# 创建一个2x3的数组
a = np.array([[1, 2, 3],
[4, 5, 6]])
# 转置数组
a_transpose = a.T
print("原始数组:")
print(a)
print("转置数组:")
print(a_transpose)
```
输出结果为:
```
原始数组:
[[1 2 3]
[4 5 6]]
转置数组:
[[1 4]
[2 5]
[3 6]]
```
阅读全文