Solve differential equations with the ODE function
1 view (last 30 days)
Show older comments
Hi,
How can I solve a differential equation that has this form and how can I define it in the function that will be used as input to the ODE function.
M(x) *(d²x/dt²) + C(x) *(dx/dt) + G(x,t) = 0
M and C depend on the variable x.
G depends on the variable x and time at the same time.
Thank you.
2 Comments
John D'Errico
on 4 Jun 2021
Did you look at the help docs for ODE45? Or for DSOLVE? If you do, you will find examples of exactly what to do, and how to write it.
doc ode45
doc dsolve
For example, if you want to use a tool like ODE45, you change the problem into a system of TWO first order differential equations. And you will indeed find an example of how to do exactly that in the help.
God gave us manuals for some reason, though too many people do not want to read them.
Answers (0)
See Also
Categories
Find more on Ordinary Differential Equations 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!