This is an old revision of the document!
This task involves putting the various parts of the signal processing algorithm together. This task will help you see the entire signal processing algorithm at work, and will demonstrate that the filters you designed in Tasks 1 and 2 actually do what they were designed to do.
Essentially, this milestone combines Task 1 and Task 2 together.
Measured signal from fluorescent lights: light.zip player frequencies: 1471, 1724, 2000, 2273, 2632, 2941, 3333, 3571, 3846, 4167
Show the following plots for a shot by player 1.
Here is the MATLAB code for creating the signal.
%Load in optical noise load light %we only want 200ms of data or 200e-3*100e3 = 20000 sample t=linspace(0,.2,20000)'; y=y(1:20000); %create the square wave signal freq=1471; y1=0.1*(0.5+0.5*square(2*pi*freq*t)); %Add square wave to the noise y2=y+y1;
After creating the signal you will be using the MATLAB code that you developed as part of Task 1 and Task 2.