merge arrays into a new one with a specific element sequence

5 ビュー (過去 30 日間)
pavlos
pavlos 2015 年 8 月 19 日
コメント済み: Sanjay Singh Negi 2021 年 7 月 30 日
Hello,
Please help me with the following:
Consider two arrays, A=[a1;a2;a3] and B=[b1;b2;b3].
How can I get a new array C, where
C=[a1;b1;a2;b2;a3;b3] ?
This is an example for small arrays, I would be needing a code for any number of elements.
Thank you.
Best,
Pavlos

採用された回答

Azzi Abdelmalek
Azzi Abdelmalek 2015 年 8 月 19 日
編集済み: Azzi Abdelmalek 2015 年 8 月 19 日
A=[1; 2; 3]
B=[4 ;5; 6]
C=[A B]'
C=C(:)
Or
A=[1; 2; 3]
B=[4 ;5; 6]
C=reshape([A B]',[],1)
  3 件のコメント
madhan ravi
madhan ravi 2020 年 7 月 10 日
SATISH why didn’t you respond to the answer to your question?
Sanjay Singh Negi
Sanjay Singh Negi 2021 年 7 月 30 日
Thanks, it saved my day.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMatrix Indexing についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by