-
Notifications
You must be signed in to change notification settings - Fork 0
/
lab_9.asv
237 lines (167 loc) · 4.46 KB
/
lab_9.asv
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
close all;
clc;
clearvars;
%%
Fs = 1200;
Fc_low = 100;
Fc_high=400;
Fc_stop = [100 400];
n_1 = 5;
n_2 = 20;
[b_low1,a_low1] = butter(n_1,Fc_low/(Fs/2),'low'); %low pass filter
h_low1 = freqz(b_low1,a_low1,Fs/2);%magnitude
[b_low2,a_low2] = butter(n_2,Fc_low/(Fs/2),'low'); %low pass filter
h_low2 = freqz(b_low2,a_low2,Fs/2);%magnitude
[b_high1,a_high1] = butter(n_1,Fc_high/(Fs/2),'high'); %high pass filter
h_high1 = freqz(b_high1,a_high1,Fs/2);%magnitude
[b_high2,a_high2] = butter(n_2,Fc_high/(Fs/2),'high'); %high pass filter
h_high2 = freqz(b_high2,a_high2,Fs/2);%magnitude
[b_stop1,a_stop1] = butter(n_1,Fc_stop/(Fs/2),'stop'); %stopband filter
h_stop1 = freqz(b_stop1,a_stop1,Fs/2);%magnitude
[b_stop2,a_stop2] = butter(n_2,Fc_stop/(Fs/2),'stop'); %stopband filter
h_stop2 = freqz(b_stop2,a_stop2,Fs/2);%magnitude
figure;
subplot(3,1,1);
plot(abs(h_low1));
hold on
plot (abs(h_low2));
grid on
title("low pass filter 5th order vs 20 th order")
xlabel("Frequency");
ylabel("Mag response of the Lowpass filter");
subplot(3,1,2);
plot(abs(h_high1));
hold on
plot (abs(h_high2));
grid on
title("High pass filter 5th order vs 20 th order")
xlabel("Frequency");
ylabel("Mag response of the Lowpass filter");
subplot(3,1,3);
plot(abs(h_stop1));
hold on
plot (abs(h_stop2));
grid on
title("Stopband filter 5th order vs 20 th order")
xlabel("Frequency");
ylabel("Mag response of the Lowpass filter");
%%
close all;
clc;
clearvars;
Fs = 1200;
t = 0:(1/Fs):0.5;
x = cos(150*pi*t) +2*sin(250*pi*t) +0.5*cos(700*pi*t) -sin(1000*pi*t);
N = 1024;
Fc_low = 100;
n_1 = 5;
n_2 = 20;
[b_low1,a_low1] = butter(n_1,Fc_low/(Fs/2),'low'); %low pass filter
h_low1 = freqz(b_low1,a_low1,Fs/2);%magnitude
[b_low2,a_low2] = butter(n_2,Fc_low/(Fs/2),'low'); %low pass filter
h_low2 = freqz(b_low2,a_low2,Fs/2);%magnitude
fiveth_Filtered_Signal = filter(b_low1,a_low1,x);
tweth_Filtered_Signal = filter(b_low2,a_low2,x);
y1= fft(fiveth_Filtered_Signal,N) / N;
y2 = fft(tweth_Filtered_Signal,N) / N;
X = fft(x,N) /N;
fft_time= linspace(-Fs/2,Fs/2,N);
figure;
subplot(3,1,1);
plot(fft_time,abs(fftshift(X)));
grid on
title("Freq response of x(t)")
xlabel("X(jw)")
ylabel("frequency")
subplot(3,1,2);
plot(fft_time,abs(fftshift(y1)));
grid on
title("5th Low Pass Filter");
xlabel("frequency");
ylabel("y1(t)");
subplot(3,1,3);
plot(fft_time,abs(fftshift(y2)));
grid on
title("20th Low Pass Filter");
xlabel("frequency");
ylabel("y2(t)");
%%
close all;
clc;
clearvars;
Fs = 1200;
t = 0:(1/Fs):0.5;
x = cos(150*pi*t) +2*sin(250*pi*t) +0.5*cos(700*pi*t) -sin(1000*pi*t);
N = 1024;
Fc_high = 400;
n_1 = 5;
n_2 = 20;
[b_high1,a_high1] = butter(n_1,Fc_high/(Fs/2),'high'); %high pass filter
h_high1 = freqz(b_high1,a_high1,Fs/2);%magnitude
[b_high2,a_high2] = butter(n_2,Fc_high/(Fs/2),'high'); %high pass filter
h_high2 = freqz(b_high2,a_high2,Fs/2);%magnitude
fiveth_Filtered_Signal = filter(b_high1,a_high1,x);
tweth_Filtered_Signal = filter(b_high2,a_high2,x);
y1= fft(fiveth_Filtered_Signal,N) / N;
y2 = fft(tweth_Filtered_Signal,N) / N;
X = fft(x,N) /N;
fft_time= linspace(-Fs/2,Fs/2,N);
figure;
subplot(3,1,1);
plot(fft_time,abs(fftshift(X)));
grid on
title("Freq response of x(t)")
xlabel("X(jw)")
ylabel("frequency")
subplot(3,1,2);
plot(fft_time,abs(fftshift(y1)));
grid on
title("5th High Pass Filter");
xlabel("frequency");
ylabel("y1(t)");
subplot(3,1,3);
plot(fft_time,abs(fftshift(y2)));
grid on
title("20th High Pass Filter");
xlabel("frequency");
ylabel("y2(t)");
%%
close all;
clc;
clearvars;
Fs = 1200;
t = 0:(1/Fs):0.5;
x = cos(150*pi*t) +2*sin(250*pi*t) +0.5*cos(700*pi*t) -sin(1000*pi*t);
N = 1024;
Fc_stop = [100 400];
n_1 = 5;
n_2 = 20;
[b_stop1,a_stop1] = butter(n_1,Fc_stop/(Fs/2),'stop'); %stopband filter
h_stop1 = freqz(b_stop1,a_stop1,Fs/2);%magnitude
[b_stop2,a_stop2] = butter(n_2,Fc_stop/(Fs/2),'stop'); %stopband filter
h_stop2 = freqz(b_stop2,a_stop2,Fs/2);%magnitude
fiveth_Filtered_Signal = filter(b_stop1,a_stop1,x);
tweth_Filtered_Signal = filter(b_stop2,a_stop2,x);
y1= fft(fiveth_Filtered_Signal,N) / N;
y2 = fft(tweth_Filtered_Signal,N) / N;
X = fft(x,N) /N;
fft_time= linspace(-Fs/2,Fs/2,N);
figure;
subplot(3,1,1);
plot(fft_time,abs(fftshift(X)));
grid on
title("Freq response of x(t)")
xlabel("X(jw)")
ylabel("frequency")
subplot(3,1,2);
plot(fft_time,abs(fftshift(y1)));
grid on
title("5th St Pass Filter");
xlabel("frequency");
ylabel("y1(t)");
subplot(3,1,3);
plot(fft_time,abs(fftshift(y2)));
grid on
title("20th High Pass Filter");
xlabel("frequency");
ylabel("y2(t)");