-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbandstop_FIR.m
38 lines (29 loc) · 906 Bytes
/
bandstop_FIR.m
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
f_samp = 200e3;
%Band Edge speifications
fs1 = 19.2e3;
fp1 = 21.2e3;
fp2 = 27.2e3;
fs2 = 29.2e3;
%Kaiser paramters
A = -20*log10(0.15);
if(A < 21)
beta = 0;
elseif(A <51)
beta = 0.5842*(A-21)^0.4 + 0.07886*(A-21);
else
beta = 0.1102*(A-8.7);
end
Wn = [(fs1+fp1)/2 (fs2+fp2)/2]*2/f_samp; %average value of the two paramters
N_min = ceil((A-7.95) / (2.285*0.02*pi)); %empirical formula for N_min
%Window length for Kaiser Window
n=N_min + 25;
%Ideal bandstop impulse response of length "n"
bs_ideal = ideal_lp(pi,n) -ideal_lp(0.28*pi,n) + ideal_lp(0.2*pi,n);
%Kaiser Window of length "n" with shape paramter beta calculated above
kaiser_win = (kaiser(n,beta))';
FIR_BandStop = bs_ideal .* kaiser_win;
fvtool(FIR_BandStop); %frequency response
%magnitude response
[H,f] = freqz(FIR_BandStop,1,1024, f_samp);
plot(f,abs(H))
grid