A= [2 3 4]; B=[2 3 4]; Output C=[22 33 44]; Merge 2 matrix elements
2 views (last 30 days)
Show older comments
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
Accepted Answer
More Answers (3)
Azzi Abdelmalek
on 12 Nov 2012
Edited: Azzi Abdelmalek
on 12 Nov 2012
A=[11 22 33];
c=num2str(A')
d=[c,c]
B=str2num(d)
B=B'
0 Comments
See Also
Categories
Find more on Resizing and Reshaping Matrices 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!