gpt4 book ai didi

python - 如何在不使用任何内置函数且不使用循环的情况下生成类似转置的矩阵?

转载 作者:行者123 更新时间:2023-11-30 22:17:50 25 4
gpt4 key购买 nike

不完全像矩阵转置。我正在使用 python 并尝试使用矩阵转换,但我不能没有循环,我正在使用 numpy,有没有仅使用矩阵运算或向量化函数的解决方案?

例如:

enter image description here

至此

enter image description here

最佳答案

看起来你想旋转 180 度然后转置。怎么样:

x = np.array([[1, 2, 3], [4, 5, 6], [7, 8, 9]])

>>> array([[1, 2, 3],
[4, 5, 6],
[7, 8, 9]])

np.rot90(x, 2).T

>>> array([[9, 6, 3],
[8, 5, 2],
[7, 4, 1]])

关于python - 如何在不使用任何内置函数且不使用循环的情况下生成类似转置的矩阵?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49538189/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com