ODE system phase plot with solutions

1 visualización (últimos 30 días)
Ahmed raafat
Ahmed raafat el 16 de Mzo. de 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??

Respuestas (0)

Categorías

Más información sobre Ordinary Differential Equations 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