我目前拥有将从模拟收集的数据放入按时间分隔的各种txt文档中的代码。但是,我想在每个文档中添加各种标题和其他信息。那怎么可能呢?某些信息将是一个变量(例如我之前输入的信息),而其他信息对于每个变量将是恒定的。
for nn = 1:TMAX/10
fid = fopen(['word' num2str(nn) '.txt'],'w');
%x and y are defined here for the entire code and for x y and theta to
%have a close access to print
x = x + vel*cos(theta)*dt;
y = y + vel*sin(theta)*dt;
fprintf(fid, '%4.5f\t%4.5f\t%4.5f\n', x,y,theta);
fclose(fid);
理想情况下,新代码将返回