How can change the time domain data into length domain data?
1 view (last 30 days)
Show older comments
Now I have a set of acceleration data in time-domain, the interval time (2s) and the speed (5 mm/s) are known. I want to ask, How can I change the acceleration data(time domain) into acceleration data (length-domain).
thanks for the helping. Regards.
0 Comments
Accepted Answer
Star Strider
on 25 Jan 2016
As best I can understand, you want acceleration in terms of distance. I would use two cumtrapz integrations to get distance from acceleration:
dx2dt2 = 0:0.01:1; % Acceleration Vector
x = cumtrapz(cumtrapz(dx2dt2)); % Distance Vector
figure(1)
plot(x, dx2dt2)
grid
4 Comments
More Answers (0)
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!