Using For Loop to integrate acceleration data to get velocity and displacement
6 次查看(过去 30 天)
显示 更早的评论
So I'm a new user to matlab and I have problem understanding the for_loop. I have some acceleration data with its respective time from my accelerometer with a sample frequency f=10Hz starting measuring at t0= 0s, tf = 15s. (15 seconds of 150 measurements)
" t = xlsread('odostroma.xlsx','A1:A150'); %time data a = xlsread('odostroma.xlsx','B1:B150'); " %acceleration data
I want to get my values from the equations v=a*t+v0 , x = 1/2*a*t^2+v*t+x0 Can someone give me the code or the instructions to do so with forloop? And to begin with, is this the right way to get velocity/displacement at its specific time value? I don't want to use the cumtrapz function to integrate,just wanting to know if this can work and if not then why. but I still want forloop just to get the understanding of it
0 个评论
回答(1 个)
Star Strider
2016-5-20
Forget the for loop.
Use the cumtrapz function once to get velocity, and twice (once on the velocity vector) to get displacement.
2 个评论
Star Strider
2016-5-28
Using a for loop is just summing the trapezoidal segments of the function. Tired tonight (long week) so I’ll vector you to the Wikipedia article on Trapezoidal integration. The section on the uniform grid is particularly straightforward. It’s just an iterative sum, with the function evaluated at each element of the grid.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Numerical Integration and Differential Equations 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!