필터 지우기
필터 지우기

Delete double cell array entries

조회 수: 3 (최근 30일)
Antje
Antje 2013년 3월 20일
How can I delete double entries in a cell array? I don't want to use a loop. For example I have:
CellArray={[1 2 3] [1 2] [3 5 6 7] [1 2] [2 4] }
And as a result I want to get this:
NewCellArray={[1 2 3] [1 2] [3 5 6 7] [2 4] }
Thank you very much and have a nice day!

채택된 답변

Azzi Abdelmalek
Azzi Abdelmalek 2013년 3월 20일
편집: Azzi Abdelmalek 2013년 3월 20일
CellArray={[1 2 3] [1 2] [3 5 6 7] [1 2] [2 4] };
m=max(cellfun(@numel,CellArray));
v=cellfun(@(x) [x inf(1,m-numel(x))],CellArray,'un',0);
[~,ii]=unique(cell2mat(v'),'rows');
CellArray=CellArray(ii)
  댓글 수: 1
Antje
Antje 2013년 3월 21일
This solution works really fine and fast! Time needed for my loop: 1.24 seconds Time needed with the one line solution from Friedrich below: 0.3 seconds Time needed with your solution: 0.07 seconds! :) Thanks so much!

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

추가 답변 (2개)

Friedrich
Friedrich 2013년 3월 20일
Hi,
one line:
NewCellArray = cellfun(@str2num, unique(cellfun(@num2str, CellArray,'UniformOutput',false)),'UniformOutput',false)
  댓글 수: 1
Antje
Antje 2013년 3월 21일
This solution works very good and I like that it is only one line. But in my case I prefer the faster solution from above. Thank you!

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


Babak
Babak 2013년 3월 20일
CellArray={[1 2 3] [1 2] [3 5 6 7] [1 2] [2 4] };
NewCellArray = [CellArray(1:3) CellArray(5)];
  댓글 수: 2
Azzi Abdelmalek
Azzi Abdelmalek 2013년 3월 20일
CellArray is just an example, I guess his array is much bigger.
Antje
Antje 2013년 3월 21일
Yes, that's the problem. My cell array can have thousands of entries.

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

카테고리

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