python中可以使用np.transpose()方法獲取矩陣的轉(zhuǎn)置。
np.transpose()函數(shù)的作用是將數(shù)組按指定的軸來(lái)進(jìn)行轉(zhuǎn)置并返回結(jié)果。
示例:
importnumpyasnp
a=np.arange(16).reshape((4,4))
print(a)
'''
[[0123]
[4567]
[891011]
[12131415]]
'''
a=np.transpose(a)
print(a)
'''
[[04812]
[15913]
[261014]
[371115]]
'''
以上內(nèi)容為大家介紹了python怎么取矩陣的轉(zhuǎn)置?希望對(duì)大家有所幫助,如果想要了解更多Python相關(guān)知識(shí),請(qǐng)關(guān)注IT培訓(xùn)機(jī)構(gòu):千鋒教育。