- https://www.mathworks.com/matlabcentral/answers/183658-how-to-correct-for-a-drifting-baseline
- https://www.mathworks.com/matlabcentral/answers/400944-how-to-correct-the-baseline-shift-of-the-signal
Using matlab to remove drift from integrated accelerometer data
17 次查看(过去 30 天)
显示 更早的评论
Hi all,
I am using the sensors within my phone to generate a CSV file of accelerations in 3-axis (x,y,z). I have now imported the data to matlab using the CSVread funtion and have began processing the data.
I have applied a filter to reduce some of the noise from the signal however upon integration the signal still drifts. The code I am using is shown below, for simplicitys sake I am only showing data from one axis. Any help is appreciated
clear; close; clc;
D=csvread('test20m3.csv');
t=D(:,1); %Define time
XAccRaw=D(:,5); %Define X acceleration
XAcc=XAccRaw*9.81; %Convert to m/s^2
d=designfilt('lowpassfir','filterorder',10,'CutOffFrequency',10,'SampleRate',100); %Lowpass FIR filter
AX=filtfilt(d,XAcc); %Apply filter to data
VX=cumtrapz(t,AX); %Integrate acceleration to get velocity
SX=cumtrapz(t,VX); %Integrate velocity to get displacement
figure(1);
plot(t,SX);
xlabel(Time (s));
ylabel(Displacement (m))
0 个评论
回答(1 个)
Rajani Mishra
2020-4-16
To resuce signal drift you can try detrending your signal for that you can use "detrend" function. Also, refer to below given MATLAB answers questions for other ways to reduce the signal drift:
Hope this helps!
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Transforms and Spectral Analysis 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!