(New page: ==Matlab File== <pre> %Bavorndej Chanyasak %ECE 301 hw 1.2 clear clc %read and play the extract data = wavread('jpforward.wav'); wavplay(data, 44100); %reverse the 'data' of the extract re...)
 
(Matlab File)
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
==Matlab File==
 
==Matlab File==
 +
 
<pre>
 
<pre>
 
%Bavorndej Chanyasak
 
%Bavorndej Chanyasak
Line 18: Line 19:
 
wavplay(reversed_data, 0.5*44100);
 
wavplay(reversed_data, 0.5*44100);
 
</pre>
 
</pre>
 +
 +
 +
I really can't catch what the singer says, even when I try reverse the extract. However, in the reversed extract, my best guess would be that the singer says "just free your mind".
 +
 +
[[Media:jpbackward_ECE301Fall2008mboutin.wav]]
 +
[[Media:jpslow_ECE301Fall2008mboutin.wav]]

Latest revision as of 18:00, 4 September 2008

Matlab File

%Bavorndej Chanyasak
%ECE 301 hw 1.2
clear
clc
%read and play the extract
data = wavread('jpforward.wav');
wavplay(data, 44100);
%reverse the 'data' of the extract
reversed = flipud(data);
%put the new data into a file
wavwrite(reversed, 44100, 32, 'jpbackward.wav');
%read and play the new file
reversed_data = wavread('jpbackward.wav');
wavplay(reversed_data, 44100);
%play the new file, but with half the speed
wavplay(reversed_data, 0.5*44100);


I really can't catch what the singer says, even when I try reverse the extract. However, in the reversed extract, my best guess would be that the singer says "just free your mind".

Media:jpbackward_ECE301Fall2008mboutin.wav Media:jpslow_ECE301Fall2008mboutin.wav

Alumni Liaison

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

Buyue Zhang