4th order non linear differential equation

3 次查看(过去 30 天)
can any body help me with the matlab code
of this 4th order non linear differential equation
4th order.PNG
  2 个评论
kingcruises
kingcruises 2020-1-3
I want to plot ode and not the sum of D ,D2f,D3f, D4f I want to plot the ode as one solution

请先登录,再进行评论。

采纳的回答

Star Strider
Star Strider 2020-1-3
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 个)

类别

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