how to count unique elements of a cell in matlab?

后端 未结 2 1346
小鲜肉
小鲜肉 2020-11-30 14:36

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 th         


        
2条回答
  •  执念已碎
    2020-11-30 15:13

    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.

提交回复
热议问题