find unique values in nested cell array

조회 수: 1 (최근 30일)
PBB
PBB 2016년 6월 21일
댓글: Star Strider 2016년 6월 30일
I have a nx1 cell array, with each row containing another cell array of variable size. I would like to isolate unique values in each nested array, while still keeping the structure of the larger cell array.
Help would be greatly appreciated. Thanks!

채택된 답변

Star Strider
Star Strider 2016년 6월 21일
I’m not sure what you want.
This will give you the unique values amongst all the nested cells in your cell array:
C = {{randi(99, 1, 10)}; {randi(99, 1, 5)}; {randi(99, 1, 20)}};
C1 = [C{:}];
Cu = unique([C1{:}]);
  댓글 수: 4
PBB
PBB 2016년 6월 30일
Works well, thanks!!
Star Strider
Star Strider 2016년 6월 30일
My pleasure!

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

추가 답변 (0개)

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by