Revision as of 13:44, 4 September 2008 by Rwijaya (Talk)

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

Reversed Song File

Tweaked Song

MATLAB .m File


%Ronny Wijaya
%rwijaya@purdue.edu
%301 HW1.2 Ronny Wijaya

clc;
clear;

songread = wavread('jpforward.wav');
wavplay(songread, 44100)

songflip = flipud(songread);
wavplay(songflip,44100)

wavwrite(songflip,44100,'hw1.2 Ronny Wijaya Flipped.wav'); %to write the output file

%The message wasn't so clear but it sounds like he commited suicide

Alumni Liaison

Basic linear algebra uncovers and clarifies very important geometry and algebra.

Dr. Paul Garrett