(New page: == MATLAB .m File == <pre> %Ryan Scott %rfscott@purdue.edu %301 HW1 - Judas Priest clc; clear; %clear memory and screen data = wavread('jpforward.wav'); rev = flipud(data); wavplay(re...)
 
 
Line 1: Line 1:
 +
== Reversed Song File ==
 +
[[media:Rfscott_jprev.wav|Reversed Song File]]
  
 
== MATLAB .m File ==
 
== MATLAB .m File ==

Latest revision as of 09:58, 3 September 2008

Reversed Song File

Reversed Song File

MATLAB .m File

%Ryan Scott
%rfscott@purdue.edu
%301 HW1 - Judas Priest

clc; clear; %clear memory and screen

data = wavread('jpforward.wav');

rev = flipud(data);
wavplay(rev,44100)%play forward

wavplay(rev,44100) %sounds like "I took my own life"
wavwrite(rev,44100,'rfscott_jprev.wav'); %to write the output file

Alumni Liaison

To all math majors: "Mathematics is a wonderfully rich subject."

Dr. Paul Garrett