Table of Contents

Progress

Future Plans

Done

Next Week
8/10
8/9

8/8

8/4

8/1-3

7/28-7/29
7/26-7/27

7/25

7/22
7/21
7/20

7/18-7/19

7/14

7/12-7/13

7/11

7/7 - 7/8
7/6
7/5
6/30
6/28

6/27

6/24
6/23
6/22

6/21

6/17
6/16
6/9
6/8
6/6
5/27
5/26
5/25
5/24
5/23
5/20
5/19
5/18
5/17
5/16
5/12
5/11
5/10
Fs = 1000; % Sampling frequency
T = 1/Fs; % Sample time
L = 1000; % Length of signal
t = (0:L-1)*T; % Time vector
% Sum of a 50 Hz sinusoid and a 120 Hz sinusoid
x = 0.7*sin(2*pi*50*t) + sin(2*pi*120*t);
y = x + 2*randn(size(t)); % Sinusoids plus noise
ydft = fft(y);
ydft(abs(ydft)<200)=0;
yfilt = ifft(ydft);
plot(yfilt(1:100),'b','linewidth',2)
hold on;
plot(y(1:100),'k');
legend('Filtered Signal','Unfiltered Signal');
5/5

To Do