euler's method
조회 수: 2 (최근 30일)
이전 댓글 표시
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
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
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)
Yusuf Suer Erdem
2021년 11월 20일
There are multiple solutions over internet but i was not able to implement your specific problem.
댓글 수: 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!