How to merge two arrays/rearrange two table colums one by one

3 ビュー (過去 30 日間)
Zeynab Mousavikhamene
Zeynab Mousavikhamene 2020 年 7 月 2 日
編集済み: madhan ravi 2020 年 7 月 2 日
Let's say I have tow arrays both are horizontal with the same size like:
A=[1,2,3,4,5];
B=[11,22,33,44,55];
I want to merge them so that the final array would be:
AB=[1,11,2,22,3,33,4,44,5,55];
This was my first question. And the second question is similar to the first one so that I have (one row of the table):
table=[1,2,3,4,5,11,22,33,44,55] and I want to rearragne table columns so that I would have:
table=[1,11,2,22,3,33,4,44,5,55];

採用された回答

madhan ravi
madhan ravi 2020 年 7 月 2 日
AB = reshape([A; B], 1, [])
  2 件のコメント
Zeynab Mousavikhamene
Zeynab Mousavikhamene 2020 年 7 月 2 日
Thank you. This one worked: AB = reshape([A'; B']', 1, [])
How about for table?
madhan ravi
madhan ravi 2020 年 7 月 2 日
編集済み: madhan ravi 2020 年 7 月 2 日
clear table % naming a variable table is a terrible idea!!!
TAble = table;
TAble.a = [1,2,3,4,5,11,22,33,44,55];
TAble.a = reshape(reshape(TAble.a,5,[]).', 1, [])
whos TAble

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMatrices and Arrays についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by