System Phase Portrait

4 visualizaciones (últimos 30 días)
Izu
Izu el 17 de Feb. de 2011
Respondida: Pratik Bajaria el 12 de Ag. de 2014
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?

Respuestas (1)

Pratik Bajaria
Pratik Bajaria el 12 de Ag. de 2014
Use ode45 function to plot the phase portraits. Check this out: http://www.mathworks.in/help/matlab/ref/ode45.html

Categorías

Más información sobre Programming en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by