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

3 visualizzazioni (ultimi 30 giorni)
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!

Risposte (2)

Walter Roberson
Walter Roberson il 31 Lug 2013
gradient(xs(1,:), ts(:))
  6 Commenti
Jan
Jan il 1 Ago 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.

Accedi per commentare.


Nawal
Nawal il 1 Ago 2013
Can I do something like
diff [ts,xs]

Categorie

Scopri di più su Symbolic Math Toolbox in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by