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

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

Dr. Paul Garrett