Recent content by Jamshaid3

  1. J

    Problem loading .wav files in matlab from directory

    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...
  2. J

    Problem loading .wav files in matlab from 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 ...
Back
Top