copy the content of a file muliptle times and save as ordered files:

input: transient.case

outputs: transient_1.case, transient_2.case,...transient_101.case

**********

n=101;
fileinfo=importdata('transient.case',';');
for i=1:n
filename=sprintf('transient_%d.case',i);
filePh = fopen(filename,'w');
fprintf(filePh,'%s\n',fileinfo{:});
fclose(filePh);
end
*********

猜你喜欢

转载自www.cnblogs.com/code-saturne/p/10398493.html