⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ex082900.m

📁 Digital Signal Processing Using MATLAB V.4随书代码
💻 M
字号:
% Chapter 8: Example 8.29%            Elliptic Bandpass Filter Design:%                Use of the ELLIP function%% Digital Filter Specifications:        % Type: Elliptic Bandpassws = [0.3*pi 0.75*pi];                  % Dig. stopband edge frequencywp = [0.4*pi 0.6*pi];                   % Dig. passband edge frequencyRp = 1;	                                % Passband ripple in dBAs = 40;                                % Stopband attenuation in dBRipple = 10 ^ (-Rp/20);                 % Passband rippleAttn = 10 ^ (-As/20);                   % Passband attenuation% Calculations of Elliptic Filter Parameters:[N,wn] = ellipord(wp/pi,ws/pi,Rp,As);% Digital Elliptic Bandpass Filter Design:[b,a] = ellip(N,Rp,As,wn);% Cascade Form Realization:[b0,B,A] = dir2cas(b,a)%%b0 = 0.0197%%B = 1.0000    1.5066    1.0000%%    1.0000    0.9268    1.0000%%    1.0000   -0.9268    1.0000%%    1.0000   -1.5066    1.0000%%A = 1.0000    0.5963    0.9399%%    1.0000    0.2774    0.7929%%    1.0000   -0.2774    0.7929%%    1.0000   -0.5963    0.9399% Plotting:figure(1); subplot(1,1,1)[db,mag,pha,grd,w] = freqz_m(b,a);subplot(2,2,1);plot(w/pi,mag);grid;title('Magnitude Response')xlabel('frequency in pi units'); axis([0, 1, 0, 1])set(gca,'XTickMode','manual','XTick',[0;0.3;0.4;0.6;0.75;1])set(gca,'YTickMode','manual','YTick',[0,Ripple,1]);subplot(2,2,3);plot(w/pi,db);grid;title('Magnitude in dB')xlabel('frequency in pi units'); axis([0 1 -50 0]);set(gca,'XTickMode','manual','XTick',[0;0.3;0.4;0.6;0.75;1])set(gca,'YTickMode','manual','YTick',[-40;0])set(gca,'YTickLabelMode','manual','YTickLabels',['40';' 0'])subplot(2,2,2);plot(w/pi,pha/pi);grid;title('Phase Response')xlabel('frequency in pi units');ylabel('phase in pi units') set(gca,'XTickMode','manual','XTick',[0;0.3;0.4;0.6;0.75;1])subplot(2,2,4);plot(w/pi,grd);grid;title('Group Delay')xlabel('frequency in pi units'); ylabel('samples')set(gca,'XTickMode','manual','XTick',[0;0.3;0.4;0.6;0.75;1])

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -