(New page: == MATLAB .m File == <pre> %Ryan Scott %rfscott@purdue.edu %301 HW1 - Judas Priest clc; clear; %clear memory and screen data = wavread('jpforward.wav'); rev = flipud(data); wavplay(re...)
(No difference)

Revision as of 09:56, 3 September 2008

MATLAB .m File

%Ryan Scott
%rfscott@purdue.edu
%301 HW1 - Judas Priest

clc; clear; %clear memory and screen

data = wavread('jpforward.wav');

rev = flipud(data);
wavplay(rev,44100)%play forward

wavplay(rev,44100) %sounds like "I took my own life"
wavwrite(rev,44100,'rfscott_jprev.wav'); %to write the output file

Alumni Liaison

Questions/answers with a recent ECE grad

Ryne Rayburn