📄 contplot.m
字号:
%控制器Bode图的显示子程序
Kfr=frsp(K,w);
figure(2);
subplot(2,1,1)
vplot('liv,lm',Kfr);
title('Bode plot of Controller')
xlabel('Frequency[rad/s]')
ylabel('Gain')
grid;
subplot(2,1,2)
vplot('liv,p',Kfr);%X加逗号
xlabel('Frequency[rad/s]')
ylabel('Phase(degrees)')
grid;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -