Matlab Text File header information reading and ploting

2 vues (au cours des 30 derniers jours)
Matlab User
Matlab User le 2 Août 2016
Commenté : Rena Berman le 30 Oct 2016
Hi, I am trying to plot multiple text files with many block sizes in matlab, i was able to plot each text file. My problem. My problem is with header information reading. The header information has same string comments such as, date, year, measurement types, but header length can vary between 20-25. My question is that how can i handle varying text file header information? Im trying to use some character signs or string from the text header to make skip and jump into numerical matrix. By the way my numerical matrix has 24 (rows) by 5 (Columns). Number of rows are not always 24,but can also vary between 1-24 depending on text data collection ( I was able to handle matrix indexes, just for your information). Thanks!!!
  3 commentaires
Walter Roberson
Walter Roberson le 3 Août 2016
I am not sure if those numbers on the left are for illustration or are part of the file?
I am not sure if multiple structures like that can occur in one file, as your examples show two like that seemingly together?
Rena Berman
Rena Berman le 30 Oct 2016
(Answers dev) restored question

Connectez-vous pour commenter.

Réponses (1)

Pham Dang
Pham Dang le 10 Août 2016
Modifié(e) : Pham Dang le 10 Août 2016
You may consider a small processing to format your file. If you are on Linux, you can use the following command in the matlab console :
!grep -e "data\|^[ ]\+[0-9]" Example-1.txt
This will display only the lines with the word "data" or "begining with several spaces followed by a number". In order to save this result to a file you should use a command like this :
!grep -e "data\|^[ ]\+[0-9]" Example-1.txt > data-noheaders.txt
It will write the output lines to the file "data-noheaders.txt". You may consider using the eval command in order to process all your files.
Then you can parse the resulting file line by line ; if it begins by "data", create a new data matrix and fill it with the following data until a new "data" string is read.
Hope this helps

Catégories

En savoir plus sur File Operations dans Help Center et File Exchange

Tags

Aucun tag saisi pour le moment.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by