fig6_86.m
来自「包含了控制理论的各种仿真程序」· M 代码 · 共 21 行
M
21 行
% 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 + =
减小字号Ctrl + -
显示快捷键?