read an empty line in a file

hello everybody, I'm french so escuse me for my english... I've a problem, I have to read a file with matlab and it contains empty line for exemple :
<Node name="root" gravity='0 0 0' dt="0.01"
<EulerImplicitSolver name="cg_odesolver" printLog="0" etc etc
matlab read the first line and stop the reading . I did :
fid = fopen(name,'rt');
tline = fgetl(fid);
while (tline~=-1)
tline = fgetl(fid);
....
....
end
fgetl(fid) returns :
tline =
''
I don't know what I have to do... thnak you very much

 Respuesta aceptada

Más respuestas (2)

Fangjun Jiang
Fangjun Jiang el 10 de Ag. de 2011

0 votos

use while ~feof(fid) instead
trajik
trajik el 10 de Ag. de 2011

0 votos

thank u very much to both of you!!

Categorías

Preguntada:

el 10 de Ag. de 2011

Community Treasure Hunt

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

Start Hunting!

Translated by