Revision as of 17:16, 4 September 2008 by Cztan (Talk)

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

Soundfile

Media:Jpbackward_ECE301Fall2008mboutin.wav

Message

Can't hear very clearly but I think it says I took my life.

MATLAB Code

% Caleb Tan

% HW 1.2


% WavRead the File

[Jpforward, Fs, nbits] = wavread('Jpforward.wav');


% Reverse the matrix using the flipud function

Jpbackward = flipud(Jpforward);


% Play the song backwards at the same speed

sound(Jpforward, Fs);


% Play it using a slower rate

sound(Jpforward, Fs/2);


% Write the sound file

wavwrite(Jpbackward, Fs/2,'jpbackward.wav');

Alumni Liaison

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

Dr. Paul Garrett