Can I extract data from excel filtering a specific search word and its associated value on the next column?
5 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Karla Haiat
le 15 Jan 2018
Commenté : Srikanth Reddy Pyata
le 12 Juin 2023
Hello. I have an excel sheet and there is a column with different names of data, for example my column can have O2, oxygen or iron. the next column has actual number values. I know on excel you can filter your column to only show "O2" for example. Is there a way to do this with Matlab? I want to extract all the values on the column next to the names but only the values that match "O2"
0 commentaires
Réponse acceptée
Emmanouil Tzorakoleftherakis
le 24 Jan 2018
Hi Karla,
You can do this by proper indexing of the columns. Please see code sample below:
data = {'O2', 5;'oxygen', 3;'iron', 2};
filtered = data(strcmp(data(:,1),'O2'), 2)
1 commentaire
Srikanth Reddy Pyata
le 12 Juin 2023
Can you add input and output format so that it is more readable
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Data Import from MATLAB 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!