📄 plotbelt.m
字号:
% Script file to plot data from the belt axis simulation
load('working\gluedata.txt');
system_dependent(14,'on'); % Try to avoid conflicts with word processors
subplot(2,2,1);
plot(gluedata(:,1),gluedata(:,2),'k');
ylabel('Position #1');
subplot(2,2,2);
plot(gluedata(:,1),gluedata(:,4),'k');
ylabel('Position #2');
subplot(2,2,3);
plot(gluedata(:,1),gluedata(:,3),'k');
ylabel('Velocity #1');
xlabel ('Time, sec');
subplot(2,2,4);
plot(gluedata(:,1),gluedata(:,5),'k');
ylabel('Velocity #2');
xlabel ('Time, sec');
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -