(2 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
+ | It is really difficult for me to decipher what he is saying, but I think I hear the words "I", "take", and "life" although I am really not sure. | ||
+ | |||
<pre> | <pre> | ||
%Adrian Delancy part 2 of Hw1 | %Adrian Delancy part 2 of Hw1 | ||
Line 9: | Line 11: | ||
wavplay(y,Fs,'async') | wavplay(y,Fs,'async') | ||
− | %Changin signal to x[-0.5n] | + | %Changin signal to x[-0.5n]: |
wavplay(y,Fs/2,'async') | wavplay(y,Fs/2,'async') | ||
Latest revision as of 15:01, 5 September 2008
It is really difficult for me to decipher what he is saying, but I think I hear the words "I", "take", and "life" although I am really not sure.
%Adrian Delancy part 2 of Hw1 clear all %Reading in the song to a vector [x,Fs,nbits]=wavread('jpforward.wav'); wavplay(x,Fs,'async') %Reversing the song changing x[n] to x[-n] y=flipud(x); wavplay(y,Fs,'async') %Changin signal to x[-0.5n]: wavplay(y,Fs/2,'async') wavwrite(y,Fs/2,'Newjudaspriest');