标签: matlab matrix
在Matlab中,我想将列矩阵转换为行矩阵,如下所示:
A = 1 2 3 4 5 6 7 8 9
对此:
A = [1 2 3 4 5 6 7 8 9]
这是怎么做到的?
答案 0 :(得分:9)
你想要矩阵的转置,在Matlab中写为A'。
A'