Character Cell Array Comparison
1 回表示 (過去 30 日間)
古いコメントを表示
Ok, so excuse me; new to matlab and have not found a solution through google. I have a 3x2 cell array for example:
test = {'apple' 'banana'; 'banana' 'apple'; 'pear' '[]'}
And I want to compare the two columns (or however many there are) and return an array of all values that match. i.e return apple and banana from the test cell given. Essentially it just needs to discard any empty or unique values.
Any help much appreciated.
0 件のコメント
採用された回答
Andrei Bobrov
2017 年 6 月 29 日
編集済み: Andrei Bobrov
2017 年 6 月 29 日
[a,~,c] = unique(test);
out = a(accumarray(c,1)>1 & ~strcmp(a,'[]'));
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Dialog Boxes についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!