📄 fr.m
字号:
clear
clc
fid1 = fopen('data4.txt','r');
errorw=fscanf(fid1,'%f',[63001,6]);
fclose(fid1);
time=0:1:63000;
figure(1)
subplot(3,1,1)
plot(time,errorw(:,1),'r');
subplot(3,1,2)
plot(time,errorw(:,2),'b');
subplot(3,1,3)
plot(time,errorw(:,3),'r');
figure(2)
subplot(3,1,1)
plot(time,errorw(:,4),'b');
subplot(3,1,2)
plot(time,errorw(:,5),'r');
subplot(3,1,3)
plot(time,errorw(:,6),'b');
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -