Batch process text files

3 visualizzazioni (ultimi 30 giorni)
alia
alia il 6 Feb 2015
Commentato: alia il 8 Feb 2015
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 Commenti
dpb
dpb il 6 Feb 2015
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 il 6 Feb 2015
Modificato: Guillaume il 6 Feb 2015
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.

Accedi per commentare.

Risposta accettata

Udit Gupta
Udit Gupta il 6 Feb 2015
You can use -
fileName = [input_directory filelabels(i).name];
That should solve the issue.
  2 Commenti
Guillaume
Guillaume il 6 Feb 2015
Modificato: Guillaume il 6 Feb 2015
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 il 8 Feb 2015
The code works now. Thanks a lot. You correctly pointed my mistake. Thanks a ton :)

Accedi per commentare.

Più risposte (1)

Image Analyst
Image Analyst il 6 Feb 2015
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.

Categorie

Scopri di più su Characters and Strings in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by