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!