bode_l.m
来自「自己编写的伯德图、尼奎斯特图、根轨迹图的Matlab绘图程序」· M 代码 · 共 13 行
M
13 行
%Bode
%computes and plots the bode 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);
bode(ng,dg);
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?