1. 程式人生 > >matlab 寫txt檔案

matlab 寫txt檔案

clear all;

clc;
scenes = dir(fullfile('D:/Resized'));

fid1=['name','.txt'];   %建立新的txt檔案
c=fopen(fid1,'wt');   %開啟txt檔案
for i=3:size(scenes,1)
    str=['D:/Resized/' scenes(i,1).name];
    fprintf(c,'%s\n',str);        %按行寫入txt檔案,%s為資料形式,str為寫入資料。。。
end
fclose(c);    %關閉txt檔案