How to add arrows to the phase plane produced ?
11 views (last 30 days)
Show older comments
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
0 Comments
Accepted Answer
KSSV
on 30 Nov 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
0 Comments
More Answers (0)
See Also
Categories
Find more on Ordinary Differential Equations in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!