how to take the derivative for the retained value from ode45?
Afficher commentaires plus anciens
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!
Réponses (2)
Walter Roberson
le 31 Juil 2013
gradient(xs(1,:), ts(:))
6 commentaires
Richard Brown
le 31 Juil 2013
Modifié(e) : Richard Brown
le 1 Août 2013
With gradient you provide the spacing, not the independent variable coordinates. Also, you need to index the column not row of the solution.
If you get the ode solver to return values at uniformly spaced points, you can then use gradient
e.g.
h = 1e-2;
ts = 0:h:10;
[~,xs] = ode45(@my_function, ts, [5, 0]);
gradient(xs(:, 1), h);
assuming velocity is your first variable
edit actually you can provide the coordinates, as Walter points out below). So the only correction needed is
gradient(xs(:, 1), ts)
I'll leave the rest of the comment up to avoid confusion later, but that's all you need
Walter Roberson
le 31 Juil 2013
Thanks, Richard.
Richard Brown
le 31 Juil 2013
No problem. Confusingly the symbolic toolbox gradient works the way you described
Walter Roberson
le 1 Août 2013
Richard,
gradient(xs(:,1), ts)
will work as well. The use of a coordinate vector instead of a scalar spacing is documented for the 2D case but not for the 1D case, but it works anyhow.
Richard Brown
le 1 Août 2013
I stand corrected, good to know!
Jan
le 1 Août 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.
Nawal
le 1 Août 2013
0 votes
Catégories
En savoir plus sur Ordinary Differential Equations dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!