uniqueCellGeneraliz​ed(A)

Unique elements in cell array containing mixed-type elements

您现在正在关注此提交

[C,ia,ic] = uniqueCellGeneralized(A)
Same as the built in unique function, but works for cell arrays containing any type of data or a mixture of different data types (e.g. numerics, strings, function handles, objects, etc)

Example 1:
A = {{'a','b','c'}, {'a','b','c'}, {'d','e','f'}};
[C,ia,ic] = uniqueCellGeneralized(A)

Result1:
C = {{'a','b','c'}, {'d','e','f'}};
ia = [1 3]
ic = [1 1 2]

Example 2:
A = {{'a','b','c'},{'a','b','c'},{'d','e','f'},{@plot},{52},{51},{52}};
[C,ia,ic] = uniqueCellGeneralized(A)

Result 2:
C = {{'a','b','c'}, {'d','e','f'}, {@plot}, {52}, {51}};
ia = [1 3 4 5 6]
ic = [1 1 2 3 4 5 4]

引用格式

Dave Stanley (2026). uniqueCellGeneralized(A) (https://ww2.mathworks.cn/matlabcentral/fileexchange/63177-uniquecellgeneralized-a), MATLAB Central File Exchange. 检索时间: .

致谢

参考作品: Unique elements in cell array

启发作品: uniqueCells

类别

Help CenterMATLAB Answers 中查找有关 Tables 的更多信息

一般信息

MATLAB 版本兼容性

  • 兼容任何版本

平台兼容性

  • Windows
  • macOS
  • Linux
版本 已发布 发行说明 Action
1.2.0.0

Updated text

1.1.0.0

Added examples

1.0.0.0