2015年1月28日 星期三

在matlab把資料寫入到不同檔案 (檔名是變數)

我要寫入 node 1~20 的座標資訊到不同的txt檔: 1.txt, 2.txt .... 以此類推

用 num2str 這個指令就可以了!!! (終於知道這個的用法 XD)

-------------------------------------

for nodeIndex = 1:NODES
     fid = fopen([ num2str(nodeIndex) '.txt'], 'at');
     fprintf(fid, '%.2f %.2f \n', node_x, node_y );
     fclose(fid);

end

沒有留言: