필터 지우기
필터 지우기

Batch process text files

조회 수: 3 (최근 30일)
alia
alia 2015년 2월 6일
댓글: alia 2015년 2월 8일
I am trying to save series of cells in a loop. I need to batch process text files having a 10 lines of both numbers and characters ( 12 12 34 54 rr). I am trying to save them in cell array so that i can access them later. The code I have written is giving error :
error : Error using textscan Invalid file identifier. Use fopen to generate a valid file identifier.
This code is working perfectly without the loop. Please help I am new to matlab. Is there any other better method of saving the files.
My code :
input_directory = 'd2/';
filelabels = dir([input_directory '*.txt']);
wav_label1 = cell(12,12);
wav_label2 = cell(12,12);
for i = 1: numel(filelabels)
fileName = filelabels(i).name;
fid = fopen(fileName);
results{i}= textscan(fid,'%f %f %f ........
%s','HeaderLines',2,'Delimiter',',','CollectOutput',1);
fclose(fid);
%testscan is giving output as a cell{{1,1}{1,2}} as I have numbers
%and characters both in text file
wav_label1{i} = results{1,1};
wav_label2{i} = results{1,2};
end
Thanks
  댓글 수: 2
dpb
dpb 2015년 2월 6일
The error indicates the file handle is invalid which means the fopen didn't succeed. Use the optional second output argument to see where the problem arises...
[fid,msg] = fopen(fileName);
if fid<0
error(['FOPEN: ' msg ' while opening: ' fileName])
end
Guillaume
Guillaume 2015년 2월 6일
편집: Guillaume 2015년 2월 6일
Or better, use the formatting facility of error:
if fid<0
error('FOPEN: %s while opening ''%s''', msg, fileName);
end
With any code that deals with entities external to your program (user input, file system, database, etc.), always be prepared to deal with unexpected failure.

댓글을 달려면 로그인하십시오.

채택된 답변

Udit Gupta
Udit Gupta 2015년 2월 6일
You can use -
fileName = [input_directory filelabels(i).name];
That should solve the issue.
  댓글 수: 2
Guillaume
Guillaume 2015년 2월 6일
편집: Guillaume 2015년 2월 6일
That would probably solve the problem, but it is always good practice to check that a fopen succeeds.
It is also good practice to use path manipulation functions instead of string manipulation functions when dealing with path. In this case:
fileName = fullfile(input_directory, filelabels(i).name);
would be safer. You don't have to worry whether or not your path ends by a path separator, nor what that separator exactly is (so your code works on any platform).
alia
alia 2015년 2월 8일
The code works now. Thanks a lot. You correctly pointed my mistake. Thanks a ton :)

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Image Analyst
Image Analyst 2015년 2월 6일
I would say the most likely reason is that you do not have a subdirectory of the current working directory called "d2". You can use mkdir() to create it.

카테고리

Help CenterFile Exchange에서 Characters and Strings에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by