Effacer les filtres
Effacer les filtres

How do I access entries in a table that match a string?

2 vues (au cours des 30 derniers jours)
Pratik Samant
Pratik Samant le 28 Fév 2020
Modifié(e) : Jeff Miller le 29 Fév 2020
I have a table, A, which is 112x5 table in size and consists of both strings and numbers. (shown below)
I also have a 99x1 cell, nameFolds, which is a series of labels for the entries in a that I'm interested in. namefolds is shown below
What I want to do is extract the 'zone' label from A, for all entries matching nameFolds. I tried to start this using boolean expressions but was given an error saying "Undefined operator '==' for input
arguments of type 'cell'".
Thanks

Réponse acceptée

Jeff Miller
Jeff Miller le 29 Fév 2020
Modifié(e) : Jeff Miller le 29 Fév 2020
This should work:
wantedRows = ismember(A.ProxID,nameFolds);
wantedZones = A.zone(wantedRows);

Plus de réponses (0)

Catégories

En savoir plus sur Tables 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