Matlab Text File header information reading and ploting

3 ビュー (過去 30 日間)
Matlab User
Matlab User 2016 年 8 月 2 日
コメント済み: Rena Berman 2016 年 10 月 30 日
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 件のコメント
Walter Roberson
Walter Roberson 2016 年 8 月 3 日
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 2016 年 10 月 30 日
(Answers dev) restored question

サインインしてコメントする。

回答 (1 件)

Pham Dang
Pham Dang 2016 年 8 月 10 日
編集済み: Pham Dang 2016 年 8 月 10 日
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

カテゴリ

Help Center および File ExchangeFile Operations についてさらに検索

タグ

タグが未入力です。

Community Treasure Hunt

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

Start Hunting!

Translated by