search smaller string array to bigger string array

how can i search 'selected' string array to bigger 'alllistarray' and index as 'mask'
selected={'a', 'gg' 'c'}
Alllist={'a', 'b' ,'d' 'ee' ,'ff' 'gg',}
%%result should be like this
mask=[0 0 1]

 Risposta accettata

Matt J
Matt J il 22 Gen 2021
Modificato: Matt J il 22 Gen 2021
selected={'a', 'gg' 'c'};
Alllist={'a', 'b' ,'d' 'ee' ,'ff' 'gg'};
mask = ~ismember(selected,Alllist)
mask = 1x3 logical array
0 0 1
or
mask = ~contains(selected,Alllist)
mask = 1x3 logical array
0 0 1

1 Commento

joms
joms il 22 Gen 2021
Modificato: joms il 22 Gen 2021
exactly what i wanted . thank you

Accedi per commentare.

Più risposte (0)

Categorie

Prodotti

Release

R2016b

Richiesto:

il 22 Gen 2021

Modificato:

il 22 Gen 2021

Community Treasure Hunt

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

Start Hunting!

Translated by