📄 fig5_23.m
字号:
% Fig. 5.23 Feedback Control of Dynamic Systems, 4e
% Franklin, Powell, Emami
% script to generate Fig. 5.23
clf
n=1;
d=[1 1 0];
n1=[1 2 ];
sys1=tf(n1,d);
rlocus(sys1,':' )
hold on
sys2=tf(n,d);
rlocus( sys2)
axis([-6 2 -3 3])
title('Root loci with P and PD compensation')
z=0:.1:.9;
wn=1:1:6;
sgrid(z, wn)
hold off
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -