How to add arrows to the phase plane produced ?

38 visualizaciones (últimos 30 días)
Teo Protoulis
Teo Protoulis el 29 de Nov. de 2018
Respondida: KSSV el 30 de Nov. de 2018
I have the following matlab code that produces the phase plane for the state variables and I want to add arrows in order to show that my system goes from the initial conditions point to the stability point which is (0,0). How is that possible ?
tspan = 0.0:0.1:10;
[t,w] = ode45(@ode, tspan, [-0.5;-0.5]);
plot(w(:,1),w(:,2))
function dx = ode(t,x)
dx = [x(2) ; - x(2) - 4*x(1)];
end

Respuesta aceptada

KSSV
KSSV el 30 de Nov. de 2018
tspan = 0.0:0.1:10;
[t,w] = ode45(@ode, tspan, [-0.5;-0.5]);
plot(w(:,1),w(:,2))
hold on
quiver(w(:,1),w(:,2),gradient(w(:,1)),gradient(w(:,2)))
end
function dx = ode(t,x)
dx = [x(2) ; - x(2) - 4*x(1)];
end

Más respuestas (0)

Categorías

Más información sobre Numbers and Precision en Help Center y File Exchange.

Productos


Versión

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by