📜  python numpy 数组更改轴 - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:51.995000             🧑  作者: Mango

代码示例1
>>> x = np.array([[1,2,3]])
>>> np.swapaxes(x,0,1)
array([[1],
       [2],
       [3]])