Intersection of three and more arrays

조회 수: 9 (최근 30일)
Baisseyev Miram
Baisseyev Miram 2018년 11월 15일
댓글: Baisseyev Miram 2018년 11월 16일
Hi, is it possible in matlab to find intersection of three and more arrays and index of intersection value in each of three array? Like [C,ia,ib] = intersect(A,B) but for three or more arrays.

채택된 답변

Bruno Luong
Bruno Luong 2018년 11월 15일
My FEX returns the index of the arrays
  댓글 수: 8
Bruno Luong
Bruno Luong 2018년 11월 15일
편집: Bruno Luong 2018년 11월 15일
IIUC, what you want is the common element with the lowest max indexes over all the set.
a = [5,6,4,7,8],
b = [7,8,6,5,4],
c = [4,8,5,6,7],
sets = {a,b,c};
nset = length(sets);
idx = cell(1,nset);
[s,idx{:}] = mintersect(sets{:});
idx = cat(1,idx{:});
imax = accumarray(repmat((1:length(s))',nset,1),idx,[],@max);
[~,iminmax] = min(imax);
firstelem = s(iminmax) % returns 5
Baisseyev Miram
Baisseyev Miram 2018년 11월 16일
Yes, thank you very much for spending your time

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Logical에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by