码迷,mamicode.com
首页 > Windows程序 > 详细

matlab 将一堆文件名读到一个文本里面windows版本里

时间:2015-10-24 18:38:25      阅读:191      评论:0      收藏:0      [点我收藏+]

标签:

有点坑:

在windows下,这么写,打印时也会把\n当成字符串打印出来

path= strcat(‘/home/wang/Desktop/trainset/num0/‘,file(i).name,‘\n‘);

 

好吧,这是windows下成功的,注意fid=fopen([save_file_name,‘result2.txt‘],‘a‘);:

file=dir(C:\Users\cong\Desktop\研一实战\项目\图像中时间数字识别\dataset_time_regconition\trainset\num0\‘);
save_file_name=C:\Users\cong\Desktop\‘;
for i=3:length(file)
     path= strcat(C:\Users\cong\Desktop\研一实战\项目\图像中时间数字识别\dataset_time_regconition\trainset\num0\‘,file(i).name);
     %save(/home/wang/Desktop/trainsetimage_name);
     %save result6.txt  -ascii path
     fid=fopen([save_file_name,result2.txt],a);
     fprintf(fid,%s\n,path);
end

 

matlab 将一堆文件名读到一个文本里面windows版本里

标签:

原文地址:http://www.cnblogs.com/Wanggcong/p/4907258.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!