How can I merge two array's?
Afficher commentaires plus anciens
I have two array and I want to merge in one . A =['test']; B= [1, 2, 3]; C= ['test', 1, 2, 3];
Réponse acceptée
Plus de réponses (1)
timo
le 29 Oct 2015
N1 = py.list({1,2,3})
N2=py.list({'Lists in python'})
N1.append(N2)
1 commentaire
Muthu Annamalai
le 29 Oct 2015
IMO - bit of an over kill, even if functional.
Catégories
En savoir plus sur MATLAB dans Centre d'aide et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!