How can i read these number from text file?
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
cemsi888
le 26 Jan 2015
Commenté : Luuk van Oosten
le 26 Jan 2015
Good morning everyone, today i have question too. I will add Picture of Problem in order to better explain tro you. My question is how can i read numbers from txt file? As you see my Picture there are too many number and each column belongs to one Parameter. How can i say matlab that these column belongs to this Parameter and another column to another. Thanx for help
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/146935/image.jpeg)
0 commentaires
Réponse acceptée
Luuk van Oosten
le 26 Jan 2015
Modifié(e) : Luuk van Oosten
le 26 Jan 2015
You could tell matlab upon importing that the data is semicolon separated (;, delimited as they call it).
try something like:
M = dlmread('yourfile.txt', ';')
Good luck.
2 commentaires
Luuk van Oosten
le 26 Jan 2015
You can make a new cell/array/table for certain specific columns and name them yourself. someting like:
Spec_Data = zeile{1,1}(:,1)
But the image and description are not helping that much... you can always ask a new question!
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Get Started with 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!