concatenate each element of two arrays

17 ビュー (過去 30 日間)
Mohit
Mohit 2014 年 2 月 1 日
コメント済み: Azzi Abdelmalek 2014 年 2 月 3 日
I have two arrays, can you please help me how can I concatenate each element of both arrays.
e.g. A=['a' 'b' 'c'] B = ['1' '2']
I want ['a1' 'a2' 'b1' 'b2' 'c1' 'c2']
Thanks
  1 件のコメント
Shivaputra Narke
Shivaputra Narke 2014 年 2 月 1 日
you can do it using for loop

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

採用された回答

Azzi Abdelmalek
Azzi Abdelmalek 2014 年 2 月 1 日
編集済み: Azzi Abdelmalek 2014 年 2 月 1 日
A=['a' 'b' 'c'];
B = ['1' '2'];
[ii,jj]=ndgrid(1:numel(A),1:numel(B));
out=arrayfun(@(x,y) [A(y) B(x)],jj(:),ii(:),'un',0);
out=sort(out)
  3 件のコメント
Mohit
Mohit 2014 年 2 月 3 日
Thanks Azzi!
Jos (10584)
Jos (10584) 2014 年 2 月 3 日
No need for arrayfun to concatenate, or using sort when you re-arrange the inputs and outputs to/from ndgrid:
[bb,aa] = ndgrid(B,A) ;
C = [aa(:) bb(:)]

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

その他の回答 (3 件)

Jan
Jan 2014 年 2 月 1 日
A = {'a' 'b' 'c'};
B = {'1' '2'};
C = strcat(repmat(A, 2, 1), repmat(B', 1, 3))
Notice that A and B are cell strings, not char vectors.
  1 件のコメント
Azzi Abdelmalek
Azzi Abdelmalek 2014 年 2 月 3 日
Mohit, this also gives you what you want, just add
C(:)'

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


Jos (10584)
Jos (10584) 2014 年 2 月 3 日
A=['a' 'b' 'c']
B = ['1' '2']
C = allcomb(A,B)

Wayne King
Wayne King 2014 年 2 月 1 日
Make A and B cell arrays of strings, but B has to be the same length as A so you'll have to repeat the 2
A = {'a','b','c'};
B = {'1','2','2'};
strcat(A,B)
  1 件のコメント
Mohit
Mohit 2014 年 2 月 3 日
Thanks, it will give me 3 elements in result matrix while I wanted 6.

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

カテゴリ

Help Center および File ExchangeCreating and Concatenating Matrices についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by