フィルターのクリア

Unique Rows in Cell Array

2 ビュー (過去 30 日間)
RDG
RDG 2013 年 4 月 2 日
Suppose my problem requires me to use a cell array and the content is as such: (Please forgive my bad coding method. I just want to illustrate the problem)
a=cell(2,1)
a{1}=[1 1 1 1;1 1 1 1;2 3 2 3;2 3 2 3;2 4 2 1;]
a{2}=[4 5 6 7;4 5 6 7;2 3 4 5;2 3 4 5;1 2 3 4;]
How can I find the occurrence of duplicate values for each row in each cell array? (Since conventional unique function cannot be applied on cell array contents)

採用された回答

José-Luis
José-Luis 2013 年 4 月 2 日
my_unik = cellfun(@(x) unique(x,'rows'),a,'uniformoutput',false);
Or what is it you want?
  1 件のコメント
RDG
RDG 2013 年 4 月 2 日
Thank you. I can work around the code. I tried cellfun earlier but I didn't really understand how to play around with it. Thanks for the tip!

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeCreating and Concatenating Matrices についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by