?? program_03_07.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 + -