Azzera filtri
Azzera filtri

Compare two cell array (different sizes) and return 0 or 1

2 visualizzazioni (ultimi 30 giorni)
Hello !
I have 2 cells array of string :
  • one which is general with many items like : A = {A, B, C, D, E, F, G, H};
  • and the seconde which is the one i want to compare with the other : B = {C, E, J};
How can i compare B and A and return 1 if all items of B are in A and 0 if not ?
Thans you for helping !

Risposta accettata

Adam Danz
Adam Danz il 9 Mar 2020
Modificato: Adam Danz il 9 Mar 2020
A = {'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H'};
B = {'C', 'E', 'J'};
idx = ismember(B,A);

Più risposte (0)

Categorie

Scopri di più su Cell Arrays in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by