(Sound Files)
(Results)
 
(One intermediate revision by the same user not shown)
Line 6: Line 6:
  
 
[[Media:Slowandreversed.wav _ECE301Fall2008mboutin| Reversed&slower]]
 
[[Media:Slowandreversed.wav _ECE301Fall2008mboutin| Reversed&slower]]
 +
 +
== Results ==
 +
 +
I am not sure what it says, but I think it is something like "seek my desire" or maybe "lick my desire"
  
 
== MATLAB Code==
 
== MATLAB Code==

Latest revision as of 22:21, 4 September 2008

Sound Files

Normalplay

Reversed

Reversed&slower

Results

I am not sure what it says, but I think it is something like "seek my desire" or maybe "lick my desire"

MATLAB Code

%Normal Play
x = wavread('jpforward.wav');
wavplay(x, 44100);



%Reverse Play

k = size(x,1);

for n = 1:1:k;
    y(k-n+1)= x(n);
end

wavplay(y, 44100);



%Reverse Play half speed

wavplay(y, 33075);

Alumni Liaison

Questions/answers with a recent ECE grad

Ryne Rayburn