📄 fig6_86.m
字号:
% Figure 6.86 Feedback Control of Dynamic Systems, 4e
% Franklin, Powell, Emami
%
clear all
close all;
w=logspace(-1,4,500);
figure(1)
plot(-sin(w)./w,-cos(w)./w,-sin(w)./w,cos(w)./w)
xlabel('Re(G(s))');
ylabel('Im(G(s))');
title('Fig. 6.86 Complete but unreadable Nyquist plot.');
grid;
figure(2)
i=100:500;
plot(-sin(w(i))./w(i),-cos(w(i))./w(i),-sin(w(i))./w(i),cos(w(i))./w(i))
grid;
xlabel('Re(G(s))');
ylabel('Im(G(s))');
title('Fig. 6.86 Relevant Portion of Nyquist plot');
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -