2

I want to count unique elements of a cell array in Matlab. How can I do this? Thank you.

c = {'a', 'b', 'c', 'a'};
% count unique elements, return the following struct
unique_count.a = 2
unique_count.b = 1
unique_count.c = 1
Martin08
  • 20,990
  • 22
  • 84
  • 93

2 Answers2

8

To count unique elements, you can combine UNIQUE with ACCUMARRAY

c = {'a', 'b', 'c', 'a'};
[uniqueC,~,idx] = unique(c); %# uniqueC are unique entries in c
                             %# replace the tilde with 'dummy' if pre-R2008a

counts = accumarray(idx(:),1,[],@sum); 

To produce the structure, use NUM2CELL and STRUCT:

countCell = num2cell(counts);
tmp = [uniqueC;countCell']; %'

unique_count = struct(tmp{:}) %# this evaluates to struct('a',2,'b',1,'c') 

unique_count = 
    a: 2
    b: 1
    c: 1
Jonas
  • 74,690
  • 10
  • 137
  • 177
1

Check out count_unique on the file exchange. It uses accumarray or sort depending upon which is the most appropriate. It will also check for nans/infs.

Rich C
  • 3,164
  • 6
  • 26
  • 37