标签:数组 维数 二维 numpy style shape port tran color
import numpy a=numpy.arange(1,25).reshape(8,3) #对二维进行数组转置 b=numpy.transpose(a) c=a.transpose() d=a.T #print(d) print(‘对于三维a[i][j][k]进行转置,默认的将i和k交换,j位置不变‘) #对三维数组进行转置 t=a.reshape(2,3,4) w=numpy.transpose(t) print(t) print(w) w1=numpy.transpose(t,(1,0,2)) #0,1,2值得是维度 #print(w1)
标签:数组 维数 二维 numpy style shape port tran color
原文地址:https://www.cnblogs.com/luckiness/p/13162014.html