📄 chap7_14plot.m
字号:
close all;
figure(1);
subplot(211);
plot(t,y(:,1),'r',t,y(:,3),'b');
xlabel('time(sec)');ylabel('Flight hight tracking');
subplot(212);
plot(t,y(:,2),'r',t,y(:,6),'b');
xlabel('time(sec)');ylabel('Pitching angle tracking');
figure(2);
subplot(211);
plot(t,ut(:,1));
xlabel('time(sec)');ylabel('Control input 1');
subplot(212);
plot(t,ut(:,2));
xlabel('time(sec)');ylabel('Control input 2');
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -