fr.m

来自「希望每一个使用本程序的人都能做到保密」· M 代码 · 共 21 行

M
21
字号
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 + =
减小字号Ctrl + -
显示快捷键?