Skip to content

python运维

python运维

  • 首页

python运维

python运维

  • 首页
2022年 11月 3日

【python】中的“.T”操作:转置

  • 未分类
  • admin

python中的“.T”操作 – 回忆瞬间 – 博客园 https://www.cnblogs.com/peixu/p/7991715.html

其实就是对一个矩阵的转置。

看代码:

a
array([[1, 2, 3],
       [4, 5, 6],
       [7, 8, 9]])
a.T
array([[1, 4, 7],
       [2, 5, 8],
       [3, 6, 9]])
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
Copyright © 2022