A= [2 3 4]; B=[2 3 4]; Output C=[22 33 44]; Merge 2 matrix elements
Afficher commentaires plus anciens
HI,
I want to merge a matrix A(1xN) with B(1xN)....The elements in both matrices are same.....the output C(1xN) should merge both matrices......
Thank you
1 commentaire
Réponse acceptée
Plus de réponses (3)
Azzi Abdelmalek
le 12 Nov 2012
Modifié(e) : Azzi Abdelmalek
le 12 Nov 2012
A=[11 22 33];
c=num2str(A')
d=[c,c]
B=str2num(d)
B=B'
Catégories
En savoir plus sur Creating and Concatenating Matrices 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!