python中的“.T”操作
本文最后更新于:2023年4月7日 下午
其实就是对一个矩阵的转置
看代码:
a array([[1, 2, 3], [4, 5, 6], [7, 8, 9]]) a.T array([[1, 4, 7], [2, 5, 8], [3, 6, 9]])
打赏支持
“如果你觉得我的文章不错,不妨鼓励我继续写作。”
python中的“.T”操作
https://dreamoneyou.github.io/2017/python中的“.T”操作/