how to take the derivative for the retained value from ode45?

3 views (last 30 days)
I'm using the ode45 to find the velocity, now I need to find the acceleration how can I take the derivative of the retained value.
My ode45 is:
[ts,xs]= ode45(@my_function,[0,10],[5,0])
Thanks in advance!

Answers (2)

Walter Roberson
Walter Roberson on 31 Jul 2013
gradient(xs(1,:), ts(:))
  6 Comments
Jan
Jan on 1 Aug 2013
gradient uses a first order method when the spacing is not equidistant. You can use the faster method FEX: DGradient and some other equivalent tools from the FEX, which apply a 2nd order method to get more accurate results for the derivatives.

Sign in to comment.


Nawal
Nawal on 1 Aug 2013
Can I do something like
diff [ts,xs]

Categories

Find more on Symbolic Math Toolbox in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!