(New page: I couldn't pick out any lyrics, but here is my code. <pre>William Schmidt HW1 Part 2 data = wavread('jpforward.wav'); wavplay(data,44100); l = length(data); %reverses matrix. might ...)
 
(No difference)

Latest revision as of 10:07, 5 September 2008

I couldn't pick out any lyrics, but here is my code.

William Schmidt
HW1
Part 2

data = wavread('jpforward.wav');

wavplay(data,44100);

l = length(data);


%reverses matrix.  might be wrong in the middle but good enough to hear
%difference
for i = 0:l/2
    dummy = data(i+1);
    data(i+1) = data(l-i);
    data(l-i) = dummy;
end

wavplay(data,44100);

Alumni Liaison

Ph.D. 2007, working on developing cool imaging technologies for digital cameras, camera phones, and video surveillance cameras.

Buyue Zhang