Oh, forgot to say that I have the file list as txt file 'all files.txt' ... So my question is how to pick this files one after the other ... Thank you
How to make for loop ?
1 次查看(过去 30 天)
显示 更早的评论
Hello everyone,
I have a folder (database) containing some wav files , and I want to read each of them to extract some features later. I know how to read each file from the list by wavread, for example the first one would be: [signal,Fs,nbits,opts] = wavread('database/ae/ae_0a01.wav') And the second one: [signal,Fs,nbits,opts] = wavread('database/ae/ae_0a02.wav') and so on. But I can not figure out how to make loop in order to automatically get them loaded one by one. Could anybody help in that case?
Thanks
采纳的回答
sixwwwwww
2013-10-22
编辑:sixwwwwww
2013-10-22
Dear Negar, try this:
for j = 1:length(files)
[signal,Fs,nbits,opts] = wavread(strcat('database/ae/ae_0a0', num2str(j), '.wav'));
end
Or better way is using:
dir
to information about all the files in a particular directory and then read them. See http://www.mathworks.de/de/help/matlab/ref/dir.html
In case you have file names stored in text file you can do as follows:
ID = fopen('filename.txt');
files = textscan(ID, '%s');
fclose(ID)
fileNames = files{:};
for j = 1:length(fileNames)
[signal,Fs,nbits,opts] = wavread(fileNames{j});
end
I hope it helps. Good luck!
2 个评论
sixwwwwww
2013-10-22
In that case you can do like this:
for j = 1:length(files)
if j <10
[signal,Fs,nbits,opts] = wavread(strcat('database/ae/ae_0a0', num2str(j), '.wav'));
else
[signal,Fs,nbits,opts] = wavread(strcat('database/ae/ae_0a', num2str(j), '.wav'));
end
end
Good luck!
更多回答(1 个)
Azzi Abdelmalek
2013-10-22
out=cell(9,4);
for k=1:9
file=sprintf('database/ae/ae_0a0%d.wav')
[signal,Fs,nbits,opts] = wavread(file)
out{k,1}=signal;
out{k,2}=Fs;
out{k,3}=nbits;
out{k,4}=opts;
end
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Startup and Shutdown 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!