fig8_39a.m

来自「世界经典教材《现代控制系统》第八版MATLAB仿真源码」· M 代码 · 共 21 行

M
21
字号
% Chapter 8: Figure 8.39, p. 452%%   Closed-loop peak magnitude and resonant frequency for%%                 K  %   T(s) =  -------------- , %           s^3+3s^2+2s+K %%   where K must be input at the command level prior to %   executing this m-file.%% Rename this script engrave1.m for use with book%num=[K]; den=[1 3 2 K];w=logspace(-1,1,400);[mag,phase,w]=bode(num,den,w);[mp,l]=max(mag);wr=w(l);mp,wr  

⌨️ 快捷键说明

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