Read data from a .txt file with two columns

147 vues (au cours des 30 derniers jours)
Lillian Lau
Lillian Lau le 30 Juil 2018
Commenté : Lillian Lau le 30 Juil 2018
Hello, I have a .txt file with two jagged columns (example shown as code). How do I read these two columns into two different arrays? I have tried the load() and xlsread(), but I usually end up with one .xlsx file with both columns squished into one .xlsx column. Would appreciate suggestions, and thank you in advance!
Example:
1.33 333.2
1.5678 7.211
1.9 1.2346

Réponses (1)

Paolo
Paolo le 30 Juil 2018
Modifié(e) : Paolo le 30 Juil 2018
If you want a cell array you can use:
fileID = fopen('mytext.txt');
mydata = textscan(fileID,'%f%f','HeaderLines',1);
fclose(fileID);
If you prefer a table you can use:
t = readtable('mytext.txt','ReadVariableNames',false)
  1 commentaire
Lillian Lau
Lillian Lau le 30 Juil 2018
Would the table be stored as an Excel file?

Connectez-vous pour commenter.

Catégories

En savoir plus sur Workspace Variables and MAT-Files 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