ODE45 for a second order differential equation
古いコメントを表示
I have a second order differential equation : y''=(2*y)+(8*x)*(9-x); Boundary Conditions y(0)=0 , y(9)=0 Need to solve the diff eq using ode45.
I've tried watching a bunch of tutorials but I just cannot seem to figure out how the function is written as a column vector [y';y'']. I don't understand it at all and that might make this query vague too.
Hope someone can help with the code or the explanation on how to solve the above.
Thank you
採用された回答
その他の回答 (2 件)
Hi,
transform a n-th order ode into a system of n 1st order ode's to solve it.
Matlab documentation example: https://de.mathworks.com/help/matlab/math/solve-nonstiff-odes.html
If you read this i guess you can quickly solve your problem.
2 件のコメント
Remston Martis
2018 年 4 月 23 日
編集済み: Remston Martis
2018 年 4 月 23 日
Ebraheem Menda
2021 年 6 月 30 日
編集済み: Ebraheem Menda
2021 年 6 月 30 日
In this case you have declared the name of the function and its output both with the same name 'fun'. That is the problem it seems.
NARSIRAM GURJAR
2019 年 9 月 16 日
0 投票
C:\Users\remst\Desktop\ode45.m
save this file with different name
カテゴリ
ヘルプ センター および File Exchange で Ordinary Differential Equations についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!