exa020804_zplane.m

来自「数字信号处理的一些MATLAB源程序」· M 代码 · 共 17 行

M
17
字号
%-----------------------------------------------------------------
% exa020804_zplane.m, for example 2.8.4
% to test zplane.m and to obtain the pole-zero plot.
%-----------------------------------------------------------------
clear;

b=[.001836,.007344,.011016,.007374,.001836];
a=[1,-3.0544,3.8291,-2.2925,.55075];

subplot(221);
zplane(b,a); % 求并画出所给系统的极零图,该系统为IIR系统;

b=[1 -1.7 1.53 -0.68];
a=1;
subplot(222);
zplane(b,a); % 求并画出第二个系统的极零图,该系统为FIR系统;

⌨️ 快捷键说明

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