How to solve coupled ODE problem
이전 댓글 표시
I'm trying to solve system of coupled ODE's.
assume that
=Ydot,
=Y, r=4.
If I have five equations which are
Ydot1 = 

Ydot2 = 

Ydot3 = 

Ydot4 = 

Ydot5 = 

How can I solve these ODE equations with its result as a graph.
Or at least, how can I solve coupled ODE with Ydot on both sides. Like,


답변 (1개)
David Goodmanson
2020년 5월 11일
Hi seoyeon,
It's easy enough to solve for Ydot4 in the fourth equation. Then if you put that up front in the code, you can plug the result into what is now the first equation to obtain
Ydot4 = 8*Y3*Y4 / (1+Y1);
Ydot1 = r*Y1^2 + 6*Y1*Y3 + Ydot4;
The (1+Y1) in the denominator may cause some problems, but that's what the equations are saying.
카테고리
도움말 센터 및 File Exchange에서 Ordinary Differential Equations에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!