How can I obtain the derivative of a vector?

50 visualizzazioni (ultimi 30 giorni)
student
student il 17 Feb 2015
Commentato: Star Strider il 18 Feb 2015
Hi, I have solved a system of ODEs with the solver ODE45 , obtaining the vector T and Y, which is a matrix of Nx6; N time points (length of vector of time points T) and 6 vectors, x1,x2,x3,dx1,dx2,dx3, displacements and velocities of three masses. I would like to obtain the vector of accelerations of x1,x2,x3. Could somebody please help me? Thank you very much!

Risposte (3)

Star Strider
Star Strider il 17 Feb 2015
Plug your ‘t’ vector and ‘y’ values matrix back into your ODE function. It will give you all the derivatives because that’s what you wrote it to provide.
  4 Commenti
student
student il 18 Feb 2015
Hi Roger,
thank you for your answer. How can I plug the vectors into my function to obtain the answer? Sorry, but I´m new in Matlab...
Star Strider
Star Strider il 18 Feb 2015
I don’t know if you’re addressing me or Roger. Assuming me, because you’re Commenting on my Answer, you just plug the integrated values of ‘t’ and ‘y’ (returned by ode45) into your ODE function. So if ‘odefun’ is the name of your ODE function and it is written as:
function dy = odefun(t,y)
to get the derivative matrix, simply call it as:
dy = odefun(t,y);
where ‘t’ is the vector of times that ode45 returns, and ‘y’ is the matrix of solutions ode45 returns. The ‘dy’ matrix is the matrix of derivatives you want, at times corresponding to ‘t’.

Accedi per commentare.


Roger Stafford
Roger Stafford il 17 Feb 2015
You can get an approximation to the derivative of dx1, dx2, and dx3 using matlab's 'gradient' function. If you would prefer a higher order approximation, you can find the code I wrote for a parabolic approximations at:
http://www.mathworks.com/matlabcentral/answers/175172

Torsten
Torsten il 18 Feb 2015
I guess you defined the ODEs as acceleration = f(displacement,velocity). So just repeat the calculations of acceleration (y'') for the solution variables you got from ODE45.
Best wishes
Torsten.
  7 Commenti
Stephen23
Stephen23 il 18 Feb 2015
Because function already has a special meaning in MATLAB, you should avoid naming your function Function. Use a more descriptive name instead.

Accedi per commentare.

Community Treasure Hunt

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

Start Hunting!

Translated by