How to plot the phase portrait of a second-order differential equation? I cannot use quiver
    10 Ansichten (letzte 30 Tage)
  
       Ältere Kommentare anzeigen
    
    Batuhan Bilen
 am 23 Feb. 2021
  
    
    
    
    
    Kommentiert: Batuhan Bilen
 am 27 Feb. 2021
            𝑥̈+ 𝑥̇ − 𝑥 − 𝑥 2 = 0 
b. 𝑥̈+ 4𝑥̇ + 4𝑥 = 0 
c. 𝑥̈− 2𝑥̇ + 2𝑥 = −8 
d. 𝑥̈− 2𝑥 − 𝑥̇ − 2 = 0
I need to plot the phase portrait of these systems. What is wrong?
syms t
syms x(t)
dx=diff(x);
d2x=diff(x,2);
eq=d2x+dx-x-x.^2==0;
t=linspace(-1,1,100);
for n=1:5
    s1=dsolve(eq,x(0)==n,dx(0)==n);
    s2=diff(s1);
    s1=subs(s1);
    s2=subs(s2);
    plot(s1,s2);
    hold on
    n=n+1;
end
0 Kommentare
Akzeptierte Antwort
Weitere Antworten (1)
Siehe auch
Kategorien
				Mehr zu Symbolic Math Toolbox finden Sie in Help Center und File Exchange
			
	Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


