4th order non linear differential equation
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
kingcruises
am 3 Jan. 2020
Beantwortet: Star Strider
am 3 Jan. 2020
can any body help me with the matlab code
of this 4th order non linear differential equation

2 Kommentare
Star Strider
am 3 Jan. 2020
This is similar to: fourth order differential equation
Why not just use the same approach?
Akzeptierte Antwort
Star Strider
am 3 Jan. 2020
‘I want to plot ode and not the sum of D ,D2f,D3f, D4f I want to plot the ode as one solution’
Then try this (using my previous Answer):
[X,Y] = ode45(odefcn, [0 1], [0 1 -8 6]);
figure
plot(X, Y(:,1))
grid
That will plot only ‘f’.
0 Kommentare
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!