Revision as of 21:07, 4 September 2008 by Cdleon (Talk)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
%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

Ph.D. on Applied Mathematics in Aug 2007. Involved on applications of image super-resolution to electron microscopy

Francisco Blanco-Silva