Common pairs from all rows except first row (vector) and how many times....

1 回表示 (過去 30 日間)
raj singh
raj singh 2016 年 5 月 29 日
編集済み: Andrei Bobrov 2016 年 5 月 29 日
A1=[1 4];
A2=[1 3 4];
A3=[1 2 3 4];
A4=[1 2 6 3 4];
I want common pairs from all row (vectors) except first row. It means my answer will be (3 4) and (1 2). May this is possible to print like this:
(Total no of row).........(Pair)............(How many times)
4 (3 4) 3
4 (1 2) 2

採用された回答

Andrei Bobrov
Andrei Bobrov 2016 年 5 月 29 日
編集済み: Andrei Bobrov 2016 年 5 月 29 日
A = {A1,A2,A3,A4};
C = cellfun(@(x) hankel(x(1:end-1),x(end-1:end)),A,'un',0);
[a,~,c] = unique(cat(1,C{:}),'rows');
ii = histc(c,1:size(a,1));
t = ii > 1;
out = [a(t,:), ii(t)]
sprintf('(%d %d) %d',out')
  1 件のコメント
raj singh
raj singh 2016 年 5 月 29 日
superb, you really done great job..........

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

その他の回答 (0 件)

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by