Line 23: | Line 23: | ||
wavplay(JPB, 44100) | wavplay(JPB, 44100) | ||
+ | |||
+ | [[Media:Jpbackward_ECE301Fall2008mboutin.wav]] |
Latest revision as of 03:06, 5 September 2008
A) The contents of this file are unintelligable to me.
B) The contents of this file are still unintelligable to me. (Surprise, surprise!)
%Jessica Sparks
%Homework 1 part2
JP = wavread('H:/ECE301/jpforward.wav');
wavplay(JP, 44100)
j=1;
for I = 751000:-1:1
JPB(j) = JP(I); j=j+1;
end
wavwrite(JPB, 'H:/ECE301/jpbackward.wav');
wavplay(JPB, 44100)