Suppose you want to write to files with names that are not known before compile time, or loop over a set of related filenames. For example, you may want to write to files file0001.txt, file0002.txt, ... so on.
Doing this in Octave/Matlab is quite easy: For example:
In Fortran 90, you do something similar
It is easy to extend this idea to create files using loops.
Doing this in Octave/Matlab is quite easy: For example:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
filename = sprintf('file%04d.txt',i) % say i = 10 | |
f1 = fopen(filename, 'w') | |
% write stuff to the file, ex: fprintf(f1,"%d",25) | |
fclose(f1) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
program foo | |
character(len=12) :: filename | |
integer :: i | |
i = 10 | |
write (filename, "(A4,i0.4,A4)") "file", i,".dat" | |
print*, trim(filename) | |
open(1, file=filename) | |
! write to the file | |
close(1) | |
end program foo |
No comments:
Post a Comment