%Jonathan Morales
%09/05/2008
%Copy and pasted the useful commands that you gave us :)  Thanks
%Read the .wav file
[data, sample_rate, bits_per_sample] = wavread('Jpforward'); 

%Read the data from the .wav file 
wavplay(data, sample_rate); 
wavplay(data, sample_rate*2/3); 

%Reversed a column vector
reverse=flipud(data); 

%Reads the reversed .wav file
%To me it sounds exactly the same backward and forward at normal speed
%Even though i have no idea what the heck he is saying it has a catchy tune
%I think he is saying "Giiiiiiive it ta me todaaay"
wavplay(reverse, sample_rate); 
%at half the reverse speed he says "waaaaaaaaaaaahhhhhhhhh take my liiiiffffe"
wavplay(reverse, sample_rate*1/2);

Alumni Liaison

Correspondence Chess Grandmaster and Purdue Alumni

Prof. Dan Fleetwood