Effacer les filtres
Effacer les filtres

Character Cell Array Comparison

2 vues (au cours des 30 derniers jours)
Seb
Seb le 29 Juin 2017
Modifié(e) : Andrei Bobrov le 29 Juin 2017
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.

Réponse acceptée

Andrei Bobrov
Andrei Bobrov le 29 Juin 2017
Modifié(e) : Andrei Bobrov le 29 Juin 2017
[a,~,c] = unique(test);
out = a(accumarray(c,1)>1 & ~strcmp(a,'[]'));

Plus de réponses (0)

Catégories

En savoir plus sur Structures dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by