how to rearrange an array? rows to columns?
1 回表示 (過去 30 日間)
古いコメントを表示
ex: a=[1 1 1; 2 2 2; 3 3 3]
to
aa=[1 2 3; 1 2 3; 1 2 3]
0 件のコメント
採用された回答
その他の回答 (1 件)
John Lipsius
2013 年 3 月 27 日
>> a'
ans =
1 2 3
1 2 3
1 2 3
IT'S THE TRANSPOSE of a matrix. Check out Linear Algebra !!!
参考
カテゴリ
Help Center および File Exchange で Resizing and Reshaping Matrices についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!