Line 1: Line 1:
 +
Click [[WaveFiles_ECE301Fall2008mboutin]] here to listen to Judas Priest backwards.
 +
 
<pre>
 
<pre>
 
%Jack Williams
 
%Jack Williams

Latest revision as of 14:41, 4 September 2008

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"

Alumni Liaison

Abstract algebra continues the conceptual developments of linear algebra, on an even grander scale.

Dr. Paul Garrett