ex12_3.m

来自「基于WEB与MATLAB编写的信号处理的源码,书名为"应用WEB和MATLAB的」· M 代码 · 共 10 行

M
10
字号
% Example 12.3
%
[z,p,k] = buttap(2);  % creates a 2-pole Butterworth filter
[num,den] = zp2tf(z,p,k);  % poles & zeros to transfer function 
% need to transform the cutoff frequency to 2
wc = 2;
[num,den] = lp2lp(num,den,wc);
T = 0.2;
disp('Digital Filter')
[numd,dend] = bilinear(num,den,1/T)

⌨️ 快捷键说明

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