How to read .txt file with numbers and texts?
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Hello. I have a .txt file including numbers and texts separated by tabs. I have tried dlmread, csvread, etc but not still able to get the file content as a matrix. I do not know what is wrong. I appreciate your help.
file=strcat('C:\my_files\','1,3','.txt');
SCRIPTfile = char(file);
dataSCRIPT=dlmread(SCRIPTfile);
0 Commenti
Risposte (1)
Walter Roberson
il 30 Apr 2018
Use readtable(); it will figure everything out automatically.
Or you could make a small modification to the code I posted at https://www.mathworks.com/matlabcentral/answers/285186-importing-data-without-knowing-number-of-columns#comment_368710
14 Commenti
Vedere anche
Categorie
Scopri di più su Text Data Preparation in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!