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

댓글 수: 2
Star Strider
2020년 1월 3일
This is similar to: fourth order differential equation
Why not just use the same approach?
채택된 답변
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
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Ordinary Differential Equations에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!