Using fgetl() to read lines

13 visualizaciones (últimos 30 días)
ZK
ZK el 10 de En. de 2013
How can I choose different line to read instead first line, using fgetl() formula?
Thank you.

Respuesta aceptada

Amith Kamath
Amith Kamath el 10 de En. de 2013
http://www.mathworks.com/matlabcentral/newsreader/view_thread/297814 may be of some help. Unless you are constrained to using fgetl() for some reason,
C = textscan(fid, '%s','delimiter', '\n');
% Setup the line number in LineNum,
RelevantLine=C{1}{Linenum};
should do the trick.
  3 comentarios
Amith Kamath
Amith Kamath el 11 de En. de 2013
I agree with Walter that this stores the entire file into the cell array, and isn't technically skipping lines. You could possibly choose more lines by using strcat on C{1}{LineNum1} and C{1}{LineNum2}.
ZK
ZK el 11 de En. de 2013
Editada: ZK el 11 de En. de 2013
Thank You I will remember that.

Iniciar sesión para comentar.

Más respuestas (1)

Walter Roberson
Walter Roberson el 10 de En. de 2013
There is no method at the operating system level to position by line. The operating system itself uses fgetl() (or fgets()) to move forward by lines. MATLAB does not provide any "wrapper" over fgetl() to support skipping lines.

Categorías

Más información sobre Entering Commands en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by