📄 ex11_18.m
字号:
% Example 11.18
%
num = [6 2 -1];
den = [1 -1 -1 1];
[r,p] = residue(num,den)
disp('Warning, this is a numerically sensitive problem due')
disp('to the repeated poles. The answer shown may not be')
disp('correct. An alternative for this problem is to use ')
disp('the command residuez which may give a different answer.')
pause
% numerical method
num = [num 0];
x = dimpulse(num,den,20)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -