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)?

57 Ansichten (letzte 30 Tage)
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.

Akzeptierte Antwort

MathWorks Support Team
MathWorks Support Team am 27 Jun. 2009
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.

Weitere Antworten (0)

Kategorien

Mehr zu Data Import and Export finden Sie in Help Center und File Exchange

Produkte


Version

R2006b

Community Treasure Hunt

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

Start Hunting!

Translated by