How can I merge two array's?
Show older comments
I have two array and I want to merge in one . A =['test']; B= [1, 2, 3]; C= ['test', 1, 2, 3];
Accepted Answer
More Answers (1)
timo
on 29 Oct 2015
N1 = py.list({1,2,3})
N2=py.list({'Lists in python'})
N1.append(N2)
1 Comment
Muthu Annamalai
on 29 Oct 2015
IMO - bit of an over kill, even if functional.
Categories
Find more on MATLAB in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!