Filter löschen
Filter löschen

I have about 300 short wav files, which have to be load into MATLAB. I am not able to find any information on how to load all the wav files into Matlab for further processing plz help.

1 Ansicht (letzte 30 Tage)
I know how to load individal file wav file in matlab,but i want to load complete database.

Antworten (1)

KALYAN ACHARJYA
KALYAN ACHARJYA am 25 Mär. 2019
% Ensure that all wav files in current directory and file names in proper sequence
wavefiles=dir('*.wav');
for i=1:length(wavefiles)
filename=wavefiles(i).name;
waveFile{i}=audioread(filename);
%Do operartion
end
  2 Kommentare
kc
kc am 1 Apr. 2019
thanks ,actually i have a mixed data set of about 500 files.I need to process them according to a perticular coding in the name of files itself.Let me see if this is useful,Thanks again.

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Signal Processing Toolbox finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by