Using For Loop to integrate acceleration data to get velocity and displacement
6 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
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 comentarios
Respuestas (1)
Star Strider
el 20 de Mayo de 2016
Forget the for loop.
Use the cumtrapz function once to get velocity, and twice (once on the velocity vector) to get displacement.
2 comentarios
Star Strider
el 28 de Mayo de 2016
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.
Ver también
Categorías
Más información sobre Numerical Integration and Differential Equations en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!