
Plotting third order differential equation using ode45
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
vaibhav gupta
am 6 Dez. 2020
Kommentiert: Ameer Hamza
am 7 Dez. 2020
Hello
Could you please how to plot below third order differential equation using ODE45.
d3x/dt3 = +-1
0 Kommentare
Akzeptierte Antwort
Ameer Hamza
am 6 Dez. 2020
Bearbeitet: Ameer Hamza
am 6 Dez. 2020
You need to convert this 3-rd order ODE to 3 first order ODEs. Also due to +-1, you have two systems of ODEs. Try following code
odeFun = @(t,x,a) [x(2);
x(3);
a];
tspan = [0 10];
IC = [1; 0; 0];
ode45(@(t,x) odeFun(t,x,1), tspan, IC)
hold on
ode45(@(t,x) odeFun(t,x,-1), tspan, IC)
legend({'$x$', '$\dot{x}$', '$\ddot{x}$'}, 'Interpreter', 'latex', 'FontSize', 16, ...
'Location', 'best')

2 Kommentare
Ameer Hamza
am 7 Dez. 2020
Try this
odeFun = @(t,x,a) [x(2);
x(3);
a];
tspan = [0 10];
IC = [1; 0; 0];
[t, y] = ode45(@(t,x) odeFun(t,x,1), tspan, IC);
plot(t, y(:,1))
hold on
[t, y] = ode45(@(t,x) odeFun(t,x,-1), tspan, IC);
plot(t, y(:,1))
legend({'$+1$', '$-1$'}, ...
'Interpreter', 'latex', ...
'FontSize', 16, ...
'Location', 'best')
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Ordinary Differential Equations finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!