Second Order Coupled Differential Equations

Is it possible to write code to model this type of differential equation? :
x'' = f(y, y', y'')
y'' = g(x, x', x'')
Thanks!

2 件のコメント

Stephon  Henry-Rerrie
Stephon Henry-Rerrie 2017 年 1 月 26 日
Are there any methods in MATLAB that I can employ? Thanks!
Steven Lord
Steven Lord 2017 年 1 月 26 日
Yes, MATLAB has several different functions for solving ODEs. The video and documentation page I linked in my answer describe how to use some of them, and the page I linked in this comment includes another example and offers some guidance about which solver to use for particular types of problems.

サインインしてコメントする。

回答 (2 件)

Steven Lord
Steven Lord 2017 年 1 月 26 日

0 投票

See this video and/or this documentation page for examples of how to solve systems of ODEs.
Torsten
Torsten 2017 年 1 月 27 日

0 投票

Can you solve for x'' and y'' , i.e.
x''=function1(x,x',y,y') y''=function2(x,x',y,y')
?
If yes, you can use any ODE solver from the ODE-suite you like.
If not, try ODE15i.
Best wishes
Torsten.

カテゴリ

ヘルプ センター および File ExchangeProgramming についてさらに検索

質問済み:

2017 年 1 月 26 日

回答済み:

2017 年 1 月 27 日

Community Treasure Hunt

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

Start Hunting!

Translated by