Read first lines of txt files with textread

24 次查看(过去 30 天)
Elzbieta
Elzbieta 2024-11-3,17:05
编辑: dpb 2024-11-4,14:20
Hello,
How to get only first 16 lines od the txt files with textread command?
field=textread(file,'%s')%,'delimiter','\n',)
Thank you
ELzbieta

回答(2 个)

Stephen23
Stephen23 2024-11-3,17:36
编辑:Stephen23 2024-11-3,17:36
"How to get only first 16 lines od the txt files with textread command?"
As the TEXTREAD documentation explains, the optional third input specifies how many times to apply the format to the file data:
So you would specify the third input as 16:
.. = textread(filename,format,16)

dpb
dpb 2024-11-3,17:37
编辑:dpb 2024-11-4,14:20
N=3;
field=textread(file,'%s',N,'delimiter',newline,'whitespace','');
See textread for details of syntax including that all input parameters other than the name-value pairs must precede any named parameter. Ignoring whitespace is also probably critical; there is an example in the doc (or at least there was once't upon a time; it seems to have come and gone over the years) for the purpose.
However, would be remiss to not point out that while it's unlikely textread will ever actually be removed, it has been deprecated in favor of textscan or the other newer i/o functions such as readlines. I will agree that it is somewhat handy that textread doesn't need the extra hassle of opening and closing a file handle as does textscan and readlines doesn't have the option to only read N lines; you get the whole file. Of course, it's trivial-enough to then delete all but the wanted N and performance is likely not noticeably different unless a file were to be really, really, really big...like too big to fit in memory big.

Community Treasure Hunt

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

Start Hunting!

Translated by