⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 nyquist_l.m

📁 自己编写的伯德图、尼奎斯特图、根轨迹图的Matlab绘图程序
💻 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 + -