(One intermediate revision by the same user not shown) | |||
Line 1: | Line 1: | ||
+ | [[Homework 1_ECE301Fall2008mboutin]] | ||
+ | |||
+ | >[[HW1.1 Allen Humphreys_ECE301Fall2008mboutin| 1.1]] >[[HW1.2 Allen Humphreys_ECE301Fall2008mboutin| 1.2]] >[[HW1.3 Allen Humphreys_ECE301Fall2008mboutin| 1.3]] >[[HW1.4 Allen Humphreys_ECE301Fall2008mboutin| 1.4]] >[[HW1.5 Allen Humphreys_ECE301Fall2008mboutin| 1.5]] | ||
+ | |||
=Subliminal Message= | =Subliminal Message= | ||
I think he said "Suicide of the mind" | I think he said "Suicide of the mind" | ||
+ | [[Media:Reversed_song_ECE301Fall2008mboutin.wav]] | ||
+ | |||
=Matlab Code= | =Matlab Code= | ||
<pre> | <pre> |
Latest revision as of 17:20, 5 September 2008
Homework 1_ECE301Fall2008mboutin
Subliminal Message
I think he said "Suicide of the mind" Media:Reversed_song_ECE301Fall2008mboutin.wav
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);