euler's method

4 ビュー (過去 30 日間)
taojian li
taojian li 2021 年 11 月 20 日
回答済み: Yusuf Suer Erdem 2021 年 11 月 20 日
Hi I'm new to matlab and I'm having trouble to solving the following equation using euler's method
y''+(1/10)*y''+siny=0
  1 件のコメント
John D'Errico
John D'Errico 2021 年 11 月 20 日
Answers is not here to do your homework problems. If you try writing the code, and then you see a problem, THEN ask a question. You might get more help at that point.

サインインしてコメントする。

回答 (2 件)

Yusuf Suer Erdem
Yusuf Suer Erdem 2021 年 11 月 20 日
Let s assume that is your problem below;
y''(x)+(1/10)*y''(x)+sin(y)=0
These codes below will solve your problem;
syms y(x)
ode = diff(y,x,2)+(1/10)*diff(y,x,2)+sin(y) == 0;
ySol(x) = dsolve(ode)
  1 件のコメント
taojian li
taojian li 2021 年 11 月 20 日
how to solve it using euler's method?

サインインしてコメントする。


Yusuf Suer Erdem
Yusuf Suer Erdem 2021 年 11 月 20 日
There are multiple solutions over internet but i was not able to implement your specific problem.

カテゴリ

Help Center および File ExchangeNumber Theory についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by