Solving nonlinear diferential equations system
5 次查看(过去 30 天)
显示 更早的评论
Hello everyone?
Could you help me to solve the differential equations below on matlab?
Note: pdot, qdot, rdot are derivatives of p,q and r respectively.
pdot = rdot + p*q - r*q ;
qdot = p*r - p^2 + r^2;
rdot = pdot - p*q - q*r ;
0 个评论
回答(1 个)
Bjorn Gustavsson
2019-9-23
That's a system of coupled first-order ODEs. Have a look at the help and documentation for ode45, ode23.
HTH
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Systems of Nonlinear Equations 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!