ODE system phase plot with solutions

조회 수: 2 (최근 30일)
Ahmed raafat
Ahmed raafat 2019년 3월 16일
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??

답변 (0개)

카테고리

Help CenterFile Exchange에서 Ordinary Differential Equations에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by