numpy.transpose


此函数可置换给定数组的维度。它尽可能返回视图。该函数采用以下参数。

numpy.transpose(arr, axes)

这里

序号 参数和描述
1 arr 要转置的数组
2 axes 与维度对应的整数列表。默认情况下,尺寸相反

import numpy as np
a = np.arange(12).reshape(3,4)

print 'The original array is:'
print a  
print '\n'

print 'The transposed array is:'
print np.transpose(a)

其输出如下

The original array is:
[[ 0 1 2 3]
 [ 4 5 6 7]
 [ 8 9 10 11]]

The transposed array is:
[[ 0 4 8]
 [ 1 5 9]
 [ 2 6 10]
 [ 3 7 11]]