##问题简介在实验采集数据的时候,经常会遇到一些问题,在不同位置的地方放置的数据,经常会遇到传感器采集数据延迟,在分析这些数据时带来一些不必要的麻烦,在这里,我也是从matlab官网[信号对齐技巧](http://www.mathworks.cn/examples/signal/mw/signal-ex03731069-align-signals-with-different-start-times)上学到的技巧,或许这些技巧对初学者有帮助。部分代码演示clear; clc; load relatedsig %加载汽车传感器的采集数据%% 2.展现初始数据ax(1)=subplot(311); plot(s1); ylabel('s1'); ax(2)=subplot(312); plot(s2); ylabel('s2'); ax(3)=subplot(313); plot(s3); ylabel('s3'); xlabel('Smaples'); linkaxes(ax,'x'); %% 3.找到每组的延迟时间delay_s21=finddelay(s2,s1)