|
|
Re: Number of line in a text file
Posted:
Nov 2, 2006 1:46 PM
|
|
Kirill wrote: > while ~feof(fh) > ch = fread(fh, chunksize, 'uchar'); > if isempty(ch) > break > end ... > n2 = n2 + sum(ch == char(10));
Prepend the 'uchar' with an asterisk, '*uchar', and you can read eight times as much with each chunk and the (ch == char(10)) will also speed up by a factor five.
/jewa
|
|