fig6_12.m
来自「现代控制系统(matlab程序)」· M 代码 · 共 10 行
M
10 行
% Chapter 6: Figure 6.12, p. 314%% Using the roots function to compute the closed-loop% system poles of a unity feedback system with% G(s)=1/s^3+s^2+2s+23.%numg=[1]; deng=[1 1 2 23];[num,den]=cloop(numg,deng);roots(den)
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?