How can I read a text file into a list?
17 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Gabriel Gregory
le 6 Nov 2015
Commenté : Gabriel Gregory
le 6 Nov 2015
I have a text file containing strings in each row, e.g.
ABC
DEF
PQR
I would like to end up with an object that i can index - i.e. x(1) = 'ABC', x(2) = 'DEF', x(3) = 'PQR'.
0 commentaires
Réponse acceptée
Robert Snoeberger
le 6 Nov 2015
You can read into a cell array:
>> data = fileread('file_name');
>> x = strsplit(data);
>> x{1}
ans =
ABC
>> x{2}
ans =
DEF
>>
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Data Type Conversion 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!