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!