4th order non linear differential equation

6 ビュー (過去 30 日間)
kingcruises
kingcruises 2020 年 1 月 3 日
回答済み: Star Strider 2020 年 1 月 3 日
can any body help me with the matlab code
of this 4th order non linear differential equation
4th order.PNG
  2 件のコメント
Star Strider
Star Strider 2020 年 1 月 3 日
Why not just use the same approach?
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 Center および File ExchangeOrdinary Differential Equations についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by