📄 chap10_4plot.m
字号:
close all;
figure(1);
plot(t,r(:,1),'r',t,y(:,1),'b');
xlabel('time(s)');ylabel('position tracking of link 1');
figure(2);
plot(t,r(:,2),'r',t,y(:,3),'b');
xlabel('time(s)');ylabel('position tracking of link 2');
figure(3);
plot(t,u(:,1),'r');
xlabel('time(s)');ylabel('initial control of link 1');
figure(4);
plot(t,u(:,2),'r');
xlabel('time(s)');ylabel('initial control of link 2');
figure(5);
plot(t,tol(:,1),'r');
xlabel('time(s)');ylabel('practical control of link 1');
figure(6);
plot(t,tol(:,2),'r');
xlabel('time(s)');ylabel('practical control of link 2');
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -