Getting most accurate derivative (velocity) from a discrete set of position data

1 view (last 30 days)
I have a set of position values and time values. I need to obtain the velocity from this data. wht are the different ways i can use and which one will give the most accurate value of velocity from position and time data?

Accepted Answer

Torsten
Torsten on 17 Nov 2022
Edited: Torsten on 17 Nov 2022
Start with
velocity(i+1/2) = norm(position(i+1)-position(i))/(t(i+1)-t(i))
and see what you get.

More Answers (0)

Categories

Find more on Fourier Analysis and Filtering in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!