How to read single value from csv file?
11 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Shritesh Jibhkate
le 12 Fév 2019
Commenté : Shritesh Jibhkate
le 12 Fév 2019
In the attached csv file I wnat to read data of column D and E and header of this data from cell A5.
I am able to read data of column D and E using instruction:
data=csvread('Test.csv',0,3);
But, I am not able to read the heading from cell A5.
Please help me on this.
2 commentaires
Réponse acceptée
Omer Yasin Birey
le 12 Fév 2019
Modifié(e) : Omer Yasin Birey
le 12 Fév 2019
Hi Shritesh, I don't think that you can read strings with csvread. But you can use importdata for this
values = importdata('Test.csv');
A5 = values.textdata(5);
It will save the string and doubles in a struct that you can reach them after.
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Spreadsheets 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!