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

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

Dr. Paul Garrett