Revision as of 17:31, 3 September 2008 by Johns311 (Talk)

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

%Tyler Johnson
%September 3rd, 2008
%clear memory
clear;
%clear console
clc;

%Read a wav file:
[data, sample_rate, bits_per_sample] = wavread('JudasPriestforward');

%Play the data from a wav file:
wavplay(data, .75*sample_rate);

%Reverse the song
backward_song = flipud(data);
sound(backward_song, .5*sample_rate);


%When the song is played forward the lyrics are clearly jibberish, even
%when slowed down.  However, when played in reverse at half speed, it
%sounds like he's saying "I took my life".

Alumni Liaison

Ph.D. on Applied Mathematics in Aug 2007. Involved on applications of image super-resolution to electron microscopy

Francisco Blanco-Silva