(Sound Bite)
(Sound Bite)
 
Line 2: Line 2:
  
 
[[Media:Jpforwards_ECE301Fall2008mboutin.wav]]
 
[[Media:Jpforwards_ECE301Fall2008mboutin.wav]]
 +
 +
[[Media:JPreverse_ECE301Fall2008mboutin.wav]]
  
 
== Code ==
 
== Code ==

Latest revision as of 18:11, 4 September 2008

Sound Bite

Media:Jpforwards_ECE301Fall2008mboutin.wav

Media:JPreverse_ECE301Fall2008mboutin.wav

Code

This is the code for forwards and backwards.

%Nathan Najdek
%00164-10728
%ECE 301 Prof. Boutin
%Sep 4, 2008

%Read the Judas Priest song:
[data, sample_rate, bits_per_sample] = wavread('\\shay.ecn.purdue.edu\nnajdek\pchome\.pcprefs\Desktop\ECE 301\Jpforwards.wav');

%Play the data from the .wav file forward:
wavplay(data, sample_rate);
wavwrite(data,sample_rate,bits_per_sample,'\\shay.ecn.purdue.edu\nnajdek\pchome\.pcprefs\Desktop\ECE 301\Jpforwards.wav');

pause(1);

%Reverse the .wav file of Judas Priest:
JPreverse = flipud(data);
wavplay(JPreverse, sample_rate);

%Save a wav file:
wavwrite(JPreverse,sample_rate,bits_per_sample,'\\shay.ecn.purdue.edu\nnajdek\pchome\.pcprefs\Desktop\ECE 301\JPreverse.wav');

The Message

Forwards: The song says "beyond the realms of death."

Reverses: The song says "I took my life."

Alumni Liaison

To all math majors: "Mathematics is a wonderfully rich subject."

Dr. Paul Garrett