Adding elements to an array
古いコメントを表示
Ok, so how do you place elements of one array into another array, so that they are included in either the beginning of the array or the end of the array?
採用された回答
その他の回答 (1 件)
YU-CHENG HUANG
2017 年 9 月 29 日
5 投票
just using c = [a , b]
ex: a = [1 2 3] b = [4 5 6] c = [a,b]
--> c = [1 2 3 4 5 6]
カテゴリ
ヘルプ センター および File Exchange で Logical についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!