Solving nonlinear diferential equations system
조회 수: 4 (최근 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!