textscan question skip lines
30 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I'm using textscan to import a non rectangular data text file. I'm having an issue skipping lines. The file has 10 rows at the begining which I'd like to skip, and for that I use the HeaderLines option.
fid = fopen('test.txt');
c = textscan(fid,'%s%d %d %d %d %d %d','HeaderLines', 10 );
fclose(fid);
The rest of the text file periodically, every 50 lines has a few lines that I'd also like to skip, this is where I'm running into a problem. Any ideas?
0 Kommentare
Antworten (2)
Walter Roberson
am 29 Jan. 2013
When you textscan, add a count after the format. The count will be the number of times the format is re-applied, and thus limits the number of lines read with that textscan() call. You would then loop around doing such calls and splicing the data together.
In some cases you can make use of the CommentStyle parameter to cause textscan() to automatically skip parts of the input. For example, if each of the lines to be skipped started with ';' you could set CommentStyle to ';' and the lines would be skipped. If this case applies to you, you would not need to put a count on or splice the data together.
3 Kommentare
Stephen23
am 9 Apr. 2022
Harishkumar Gajakosh
am 9 Apr. 2022
Bearbeitet: Harishkumar Gajakosh
am 9 Apr. 2022
@Stephen: I think that if i were to use this then it would read everything between '(' and '%' as comment i.e the comment starts at '(' and ends at '%', based on the reference given here, under 'CommentStyle — Symbols designating text to ignore' section.
Thus, it is not helping. I appreciate the effort though. Thanks.
per isakson
am 29 Jan. 2013
See my answer http://www.mathworks.se/matlabcentral/answers/58463-read-data-form-file and the answer that I link to.
0 Kommentare
Siehe auch
Kategorien
Mehr zu Text Files finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!