Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 Matlab 中,我想将列矩阵转换为行矩阵,如下所示:
A = 1 2 3 4 5 6 7 8 9
对此:
A = [1 2 3 4 5 6 7 8 9]
这是怎么做到的?
您想要矩阵的转置,在 Matlab 中写为A'.
A'