필터 지우기
필터 지우기

System Phase Portrait

조회 수: 2 (최근 30일)
Izu
Izu 2011년 2월 17일
답변: Pratik Bajaria 2014년 8월 12일
Hello, how can I draw the Phase portrait of the following system:
x' = x^3 + y - 3
y' = x + 5y + y^3 - 4
Is there some "catch" or it goes straightforward to something like:
function res = func2(t, y)
res = [y(1).^3 + y(2) -3;
y(1)+ 5*y(2)+ y(2).^3 -4];
Should I use y*y*y or y.^3?
Edit: How can I find the equilibrium points of the system?

답변 (1개)

Pratik Bajaria
Pratik Bajaria 2014년 8월 12일
Use ode45 function to plot the phase portraits. Check this out: http://www.mathworks.in/help/matlab/ref/ode45.html

카테고리

Help CenterFile Exchange에서 Programming에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by