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

📄 ex10_10.m

📁 基于WEB与MATLAB编写的信号处理的源码,书名为"应用WEB和MATLAB的信号与系统基础.
💻 M
字号:
% Example 10.10
% plots Figure 10.14
num = [1 0.05];
den = [1 .1 0];
clf
subplot(221),rlocus(num,den)
title('(a)')
num = [1 0.1];
den = [1 .1 0];
subplot(222),rlocus(num,den)
title('(b)')
num = [1 0.2];
den = [1 .1 0];
subplot(223),rlocus(num,den)
title('(c)')
num = [1 1];
den = [1 .1 0];
subplot(224),rlocus(num,den)
title('(d)')
subplot(111)
pause
% plots Figure 10.15
num = [1 0.1];
[Ncl,Dcl] = cloop(num*.1,den,-1);
t = 0:.05:100;
y = step(Ncl,Dcl,t);
num = 1;
[Ncl,Dcl] = cloop(num*.005,den,-1);
y1 = step(Ncl,Dcl,t);
plot(t,y,t,y1,t,ones(size(t)),':')
ylabel('Amplitude')
title('Example 10.10')
xlabel('Time (sec)')
text(10,.9,'PD')
text(35,.8,'P')

⌨️ 快捷键说明

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