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

📄 ex11_18.m

📁 基于WEB与MATLAB编写的信号处理的源码,书名为"应用WEB和MATLAB的信号与系统基础.
💻 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 + -