Revision as of 13:41, 4 September 2008 by Willi155 (Talk)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

%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