I am using MATLAB R2009a. I have tried many ways but all in vane... Could you please write down some code to load multiple .wav files from a directory...
Hello participants. Can anyone help me in the code of loading wavs... I am getting some error...
Function for the Code is...
function [wavs,fs] = load_wavs(directory)
% Initialize variables
data = 0;
fs = 0;
% Load the wavs
if(nargin < 1),
D = dir;
else
D = dir(directory);
end
for i=2 ...