How do I specify the number of header lines using TEXTSCAN to read a file that has multiple blocks of data, each with its own header, in MATLAB 7.3 (R2006b)?
조회 수: 41 (최근 30일)
이전 댓글 표시
I have a text file that consists of:
Dataset 1:
5 2 7
2 2 1
Dataset 2:
8 7 8
0 1 3
I would like to read the numeric information, but skip the header line at the beginning of each block of data.
채택된 답변
MathWorks Support Team
2009년 6월 27일
This bug has been fixed in Release 2007b (R2007b). For previous product releases, read below for any possible workarounds:
Execute the following commands:
fid = fopen('mydata.txt');
data1 = textscan(fid, '%d%d%d', 2, 'headerLines', 1);
data2 = textscan(fid, '%d%d%d', 2, 'headerLines', 2);
fclose(fid);
The TEXTSCAN function is called once for each set of data, using the 'headerLines' option to skip the header lines.
There is an error in the documentation for TEXTSCAN within the MATLAB Function Reference, concerning the 'headerLines' option. It should read that the value of 'headerLines' is the number of line breaks that are skipped before reading commences.
In the example above, 'headerLines' is set to 2 on the second call to TEXTSCAN because the first call to TEXTSCAN leaves you just before the line break on the third line of "mydata.txt". Moving to the beginning of the next line counts as a header line.
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Data Import and Export에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!