Revision as of 18:58, 4 September 2008 by Jpfister (Talk)

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

Part A: What's he saying?

I have no idea what Judas Priest is saying. Seriously, what is he saying? If I had to guess it sounds remotely like "Now come out to die". That's a bit morose, I know, but that's what it sounds like to me.

Part B: The Hidden Message in Reverse

MATLAB Code:

%Jacob Pfister
%HW1.2

clear
clc

[wavdataf srate bps] = wavread('jpforward.wav'); %read in data

wavplay(wavdataf, srate); %play forward

wavdatar = flipud(wavdataf); %flip data

wavplay(wavdatar, srate); %play reverse

wavwrite(wavdatar, srate, bps, 'JPSubliminalInReverse.wav'); %write file
<\pre>

Alumni Liaison

Questions/answers with a recent ECE grad

Ryne Rayburn