I am trying to write a program where i have to read a wav file, extract some features from it and save them and then go and pick the next file repeat the same procedure. the number of wave files to be picked are more than 100. Can someone help me how to read wavfiles one after another. (say the files are named e1.wav,e2.wav and so on). someone please help me
|
|
|
The To get started, try the following:
Edit 1: Change the double-quotes to single-quotes (thx to user1540393). Edit 2 (Suggested by amro): If a processing result has to be stored per file, I often use the following pattern. I usually pre-allocate an array, a struct array or a cell array of the same size as the filelist. Then I use an integer index to iterate over the file list, which I can also use to write the output. If the information to be stored is homogeneous (e.g. one scalar per file), use an array or a struct array. However, if the information differs from file to file (e.g. vectors or matrices of different size) use a cell array instead. An example using an ordinary array:
An example using a cell array:
|
|||||||||||
|