How to mask cells of certain values?
15 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Rightia Rollmann
le 23 Sep 2018
Modifié(e) : Rightia Rollmann
le 24 Sep 2018
The following works well:
A = [1 2 3 4 5];
A > 2
0 0 1 1 1
But, how can i mask A==1 and A ==3, so getting the following result (for example putting the values that are to be masked in a vector):
mask_array = [1 2];
A ~= mask_array
0 1 0 1 1
0 commentaires
Réponse acceptée
Image Analyst
le 23 Sep 2018
Modifié(e) : Image Analyst
le 23 Sep 2018
Try this:
mask = (A == 1) | (A == 3) % 1 for either 1 or 3
Or maybe you mean
mask = (A == 1) | (A >= 3) % 1 for 1 or anything 3 or more.
1 commentaire
Rightia Rollmann
le 24 Sep 2018
Modifié(e) : Rightia Rollmann
le 24 Sep 2018
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Author Block Masks 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!