Finite difference method to solve a nonlinear eqn?
古いコメントを表示
Hello,
I have a second order nonlinear question and I need to solve it for different times by using finite difference method but I don't know how to start it. I am quite new in Matlab. Is there anyone who can help me or at least show me a way to do this?
thank you
6 件のコメント
Torsten
2022 年 3 月 25 日
If we knew the equation, maybe we could help.
Onur Metin Mertaslan
2022 年 3 月 25 日
編集済み: Onur Metin Mertaslan
2022 年 3 月 25 日
Onur Metin Mertaslan
2022 年 3 月 25 日
Torsten
2022 年 3 月 25 日
g = 9.81;
L = 1.0;
T = 1.0;
dT = 0.01;
y_0 = pi/2;
v_0 = 0;
f = @(t,y)[y(2);-g/L*sin(y(1))];
tspan = 0:dT:T;
y0 = [y_0;v_0];
[t,y] = ode45(f,tspan,y0);
plot(t,y)
Onur Metin Mertaslan
2022 年 3 月 25 日
編集済み: Onur Metin Mertaslan
2022 年 3 月 25 日
採用された回答
その他の回答 (0 件)
カテゴリ
ヘルプ センター および File Exchange で Solver Outputs and Iterative Display についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
