Numerical integration acceleration but correcting for the offset
1 view (last 30 days)
Show older comments
How can I calculate displacement from acceleration but correcting for the offset?
Basically from the acceleration cruve I can get the curve of velocity and displacement doing something like this:
NewVel = cumtrapz(time, acceleration);
NewPos = cumtrapz(time,NewVel);
However I will get a ramp (an offset) how can I remove it to get proper displacement?![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/204173/image.png)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/204173/image.png)
0 Comments
Answers (0)
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!