A= [2 3 4]; B=[2 3 4]; Output C=[22 33 44]; Merge 2 matrix elements
2 ビュー (過去 30 日間)
古いコメントを表示
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
採用された回答
その他の回答 (3 件)
Azzi Abdelmalek
2012 年 11 月 12 日
編集済み: Azzi Abdelmalek
2012 年 11 月 12 日
A=[11 22 33];
c=num2str(A')
d=[c,c]
B=str2num(d)
B=B'
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Resizing and Reshaping Matrices についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!