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

Sound Files

Sound File

Sound File

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

Abstract algebra continues the conceptual developments of linear algebra, on an even grander scale.

Dr. Paul Garrett