📄 nyquist_l.m
字号:
%nyquist
%computes and plots the nyquist figure of the single-input, single-output LTI model SYS.
%
p=input('The character of the nominator (poly="1;"non="0")=');
if p==1
num=input('Type in the zeros=');
ng=poly(num);
else
ng=1;
end
den=input('Type in the poles=');
dg=poly(den);
nyquist(ng,dg);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -