(New page: == Matlab code == <pre> %Tyler Houlihan(thouliha@purdue.edu) 0016165728 %9/3/08 %ECE301 HW 1 %------------------------------------------------- %This program will play the judas priest e...) |
|||
Line 1: | Line 1: | ||
+ | * [[Judas Priest reversed_ECE301Fall2008mboutin.wav]] | ||
+ | |||
== Matlab code == | == Matlab code == |
Revision as of 13:03, 4 September 2008
Matlab code
%Tyler Houlihan(thouliha@purdue.edu) 0016165728 %9/3/08 %ECE301 HW 1 %------------------------------------------------- %This program will play the judas priest extract %backwards, i could not hear anything, %even when sampling at different frequencies. original=wavread('jpforward.wav'); reversed=flipud(original); wavplay(original,44100); pause(1); wavplay(reversed,44100); pause(1); wavplay(reversed,22050); %None of the other sampling rates were understandable %I honestly can't hear a reverse message, it just sounds like noise