How to combine two arrays
7 ビュー (過去 30 日間)
表示 古いコメント
採用された回答
Robert U
2022 年 9 月 30 日
Hi MIch,
have a look in the documentation under language fundamentals --> reshape()
a = [3 5 1];
b = [4 6 7];
c= reshape([a' b']',1,[])
Kind regars,
Robert
その他の回答 (1 件)
参考
カテゴリ
Find more on Data Types in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!