How to solve two 2nd order differential equations using ode's
1 回表示 (過去 30 日間)
古いコメントを表示
my system is as follows. x"+ x'+ x + y'=0; y"+ y'+ y + x'=0; Thanks in advance for the help.
0 件のコメント
採用された回答
Birdman
2018 年 2 月 21 日
Here is an approach, with symbolic way:
syms x1(t) x2(t)
eq1=diff(x1,2)+diff(x1,1)+x1+diff(x2,1)==0;
eq2=diff(x2,2)+diff(x2,1)+x2+diff(x1,1)==0;
solx=dsolve([eq1,eq2]);
x1(t)=solx.x1
x2(t)=solx.x2
4 件のコメント
Birdman
2018 年 2 月 22 日
I do not know how to use ode45. Maybe you should open a new question in forum.
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Ordinary Differential Equations についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!