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