How can I merge two array's?
이전 댓글 표시
I have two array and I want to merge in one . A =['test']; B= [1, 2, 3]; C= ['test', 1, 2, 3];
채택된 답변
추가 답변 (1개)
timo
2015년 10월 29일
N1 = py.list({1,2,3})
N2=py.list({'Lists in python'})
N1.append(N2)
댓글 수: 1
Muthu Annamalai
2015년 10월 29일
IMO - bit of an over kill, even if functional.
카테고리
도움말 센터 및 File Exchange에서 MATLAB에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!