Integration of Velocity data to Displacement

7 visualizaciones (últimos 30 días)
Angelos Mongolias
Angelos Mongolias el 12 de Nov. de 2019
Comentada: Angelos Mongolias el 12 de Nov. de 2019
Hello,
I have some velocity (seismic) data and i want to convert them to displacement.
The sampling rate is 1000Hz so that means that if I want to find the displacement for 1 sec
I have 1000 values.
There is a list of commands that I can use but I am not sure which one suits to my case.
I just need to convert a list of data.
Any proposals?

Respuestas (1)

Daniel M
Daniel M el 12 de Nov. de 2019
Editada: Daniel M el 12 de Nov. de 2019
Use cumtrapz as in
displacement = cumtrapz(velocity)/fs; % where fs is your sampling rate
Then you can assess afterwards if the accuracy is suitable for your application or whether you need a different method.

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!

Translated by