ODE system phase plot with solutions

2 visualizzazioni (ultimi 30 giorni)
Ahmed raafat
Ahmed raafat il 16 Mar 2019
Hello
I need to plot ODE solve on These Quiver lines
here is my code for arrows plot
clc;clear;close all;clear global
x=-.5:0.05:.5;lamda=-.25:.01:.25;
[X,L]=meshgrid(x,lamda);
Dx1=-X.^4+L;
Dl=-.5*(abs(X).^3);
figure()
quiver(X,L,Dx1,Dl,2)
title('System 1')
xlabel('X');ylabel('\lambda')
hold on
and here is the plot
untitled.jpg
how to plot the true line of some solutions??

Risposte (0)

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by