(New page: %Spencer Erekson %ECE 301 Homework 1 Problem 2 %September 4, 2008 %read in the song from the .wav file data = wavread('Jpforward.wav'); %reverse the song data = flipud(data); %play the ...) |
|||
Line 1: | Line 1: | ||
+ | <pre> | ||
%Spencer Erekson | %Spencer Erekson | ||
%ECE 301 Homework 1 Problem 2 | %ECE 301 Homework 1 Problem 2 | ||
Line 17: | Line 18: | ||
%you can hear him say something like "I took my life" | %you can hear him say something like "I took my life" | ||
+ | </pre> |
Revision as of 05:35, 4 September 2008
%Spencer Erekson %ECE 301 Homework 1 Problem 2 %September 4, 2008 %read in the song from the .wav file data = wavread('Jpforward.wav'); %reverse the song data = flipud(data); %play the song backwards at normal speed wavplay(data, 44100); %play the song backwards a little slower wavplay(data, 32000); %you can hear him say something like "I took my life"