find unique values in nested cell array

3 ビュー (過去 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 Center および File ExchangeData Types についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by