Saving variables in the loop.

Hi Im using fgets to display every line in the file.
fid = fopen('file');
tline = fgets(fid);
while ischar(tline)
L = (tline);
tline = fgets(fid);
disp(tline)
end
I would like to save every line in the workspace in sequence as L1, L2, L3 ...
Can You propose me a solution?
Thank You.

 Réponse acceptée

Azzi Abdelmalek
Azzi Abdelmalek le 28 Jan 2013
Modifié(e) : Azzi Abdelmalek le 28 Jan 2013

0 votes

fid = fopen('file');
line1 = fgetl(fid);
res=line1;
while ischar(line1)
line1 = fgetl(fid);
res =char(res,line1)
end
fclose(fid);

5 commentaires

ZK
ZK le 28 Jan 2013
Sorry it isn't working. it returns my all file saved in workspace as res, not as every line.
Azzi Abdelmalek
Azzi Abdelmalek le 28 Jan 2013
Modifié(e) : Azzi Abdelmalek le 28 Jan 2013
If you want each line, for example line 3:
line3=res(3,:)
ZK
ZK le 28 Jan 2013
Thanks, but yes I know this possibility. most important for me is have to save every line separately in workspace, becouse I work with several files and I dont know how leinght it is, and I can't appeal directly to line becouse it could not exist.
Azzi Abdelmalek
Azzi Abdelmalek le 28 Jan 2013
Modifié(e) : Azzi Abdelmalek le 28 Jan 2013
fid = fopen('file');
line1 = fgetl(fid);
res=line1;
k=0
while ischar(line1)
k=k+1;
line1 = fgetl(fid);
assignin('base',sprintf('L%d',k),line1)
end
fclose(fid);
ZK
ZK le 28 Jan 2013
Thank You very much, working great.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by