(New page: =Subliminal Message= I think he said "Suicide of the mind" =Matlab Code= <pre> %--------------------- %Allen Humphres %ECE301 Homework 1 %Problem 2 %--------------------- clc clear %Read ...)
 
Line 4: Line 4:
 
<pre>
 
<pre>
 
%---------------------
 
%---------------------
%Allen Humphres
+
%Allen Humphreys
 
%ECE301 Homework 1
 
%ECE301 Homework 1
 
%Problem 2
 
%Problem 2

Revision as of 17:45, 5 September 2008

Subliminal Message

I think he said "Suicide of the mind"

Matlab Code

%---------------------
%Allen Humphreys
%ECE301 Homework 1
%Problem 2
%---------------------
clc
clear 
%Read song
[data, sample_rate, bits_per_sample] = wavread('c:\Users\Allen\Desktop\jp.wav');
%Play song normal
wavplay(data,sample_rate);
pause(1)
%Reverse song and play at normal speed
data = flipud(data);
wavplay(data,sample_rate);
pause(1)
%Play song at slower speed
wavplay(data, sample_rate*.75);

Alumni Liaison

Recent Math PhD now doing a post-doctorate at UC Riverside.

Kuei-Nuan Lin