Click WaveFiles_ECE301Fall2008mboutin here to listen to Judas Priest backwards.
%Jack Williams %ECE 301, Mimi Boutin %HW 1.2 %September 4, 2008 %Judas Priest Song Played in Reverse clear clc %Set the sample rate to that of common CD players (44100 Hz) sample_rate = 44100; %Read the data file from saved location data = wavread('H:\Fall 2008 ENAD\ECE 301\jpforward.wav'); %Reverse the column vector 'data' data = flipud(data); %Play the soundfile backwards wavplay(data, sample_rate); %Play the soundfile backwards, but slower wavplay(data, sample_rate/1.25); %When the .wav file is played backwards, %the message seems to be "I took my life"