vote up 3 vote down star

I have a loop like this:

for i=1:no

  %some calculations

  fid = fopen('c:\\out.txt','wt');
  %write something to the file
  fclose(fid);

end

I want data to be written to different files like this:

  • for i=1, data is written to out1.txt
  • for i=2, data is written to out2.txt
  • for i=3, data is written to out3.txt
  • etc.

Doing 'out'+ i does not work. How can this be done?

flag

4 Answers

vote up 4 vote down check

Yet another option would be the function SPRINTF:

fid = fopen(sprintf('c:\\out%d.txt',i),'wt');
link|flag
vote up 3 vote down

filename = strcat('out', int2str(i), '.txt');

link|flag
vote up 1 vote down

Did you try:

int2str(i)
link|flag
vote up 0 vote down

More simply:

for i=1:no
  %some calculations
  fid = fopen(['c:\out' int2str(i) '.txt'],'wt');
  %write something to the file
  fclose(fid);

end

PS. I don't believe Matlab strings need escaping except for '' (unless it's a format string for *printf style functions)

EDIT: See comment @MatlabDoug

link|flag
1  
int2str(i) not int2str(1) – MatlabDoug Nov 6 at 15:04

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.