How change two columns with 5 rows to a single row?
2 ビュー (過去 30 日間)
古いコメントを表示
Bajdar Nouredine
2024 年 7 月 26 日
編集済み: David Goodmanson
2024 年 7 月 26 日
x= [2 4 6 8 10 ];
y= [20 40 60 80 100];
% I want to reprsent them in a single row like that z= 2 20 4 40 . . .
0 件のコメント
採用された回答
David Goodmanson
2024 年 7 月 26 日
編集済み: David Goodmanson
2024 年 7 月 26 日
Hi Bajdar,
xy = [x; y];
z = xy(:)'
i.e. concatenate x and y vertically, read that matrix out columnwise, then take the transpose. If x or y could be complex, then
z = xy(:).'
(transpose, not complex conjugate transpose) is necessary.
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Other Formats についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!