Info
この質問は閉じられています。 編集または回答するには再度開いてください。
How to merge first elements from 2 array into an new array?
1 回表示 (過去 30 日間)
古いコメントを表示
Hi,
I want to merge 2 arrays so that the output is as follows:
A=[1 2 3]
B=[4 5 6]
I want C to be:
C=[1 4 2 5 3 6]
That pick up each successive numbers from each side and place them side by side in a new array? Any way of doing this using simple lines ..if possible no use of inbuilt functions..
1 件のコメント
回答 (2 件)
Azzi Abdelmalek
2015 年 6 月 30 日
C=reshape([A;B],1,[])
3 件のコメント
Azzi Abdelmalek
2015 年 6 月 30 日
Or
A=[1 2 3]
B=[4 5 6]
n=numel(A)
C(1:2:2*n)=A;
C(2:2:2*n)=B;
この質問は閉じられています。
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!