fig9_42.m

来自「现代控制系统(matlab程序)」· M 代码 · 共 17 行

M
17
字号
% Chapter 9: Figure 9.42, p. 521%%   The Bode plot of%%                    0.5 %   G(s) = ---------------------------%            s^3 + 2 s^2 +  s + 0.5%%   with gain and phase margin shown on the plot using%   the margin function.%num=[0.5]; den=[1 2 1 0.5 ];w=logspace(-1,1,200);[mag,phase,w]=bode(num,den,w);margin(mag,phase,w);  

⌨️ 快捷键说明

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