4th order non linear differential equation

조회 수: 3 (최근 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 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