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!