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

📄 program_03_07.m

📁 数字信号处理和小波分析的源码
💻 M
字号:
% Program 3_7
% Determination of the Factored Form
% of a Rational z-Transform
%
colordef black;
num = input('Type in the numerator coefficients = ');
den = input('Type in the denominator coefficients = ');
[z,p,k] = tf2zp(num,den);
m = abs(p);
disp('Zeros are at');disp(z);
disp('Poles are at');disp(p);
disp('Gain constant');disp(k);
disp('Radius of poles');disp(m);
sos = zp2sos(z,p,k);
disp('Second-order sections');disp(real(sos));
zplane(num,den,'g')

⌨️ 快捷键说明

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