Euler's method

조회 수: 2 (최근 30일)
Abd Sad
Abd Sad 2021년 1월 13일
답변: Steve Areola 2023년 8월 5일
Help
  댓글 수: 1
James Tursa
James Tursa 2021년 1월 13일
What have you done so far? What specific problems are you having with your code?

댓글을 달려면 로그인하십시오.

답변 (2개)

WalterWhite
WalterWhite 2021년 1월 13일

Steve Areola
Steve Areola 2023년 8월 5일
clc
a=0;b=2;N=10; alph=0.5;
h=(b-a)/N; t(1)=a; w(1)=alph;
f = @(t,y) y-t^2+1;
for i=2:N+1
t(i)=a+(i+1)*h;
w(i)=w(i-1)+h*f(t(i-1),w(i-1));
end
disp("t w")
x=[t;w];
fprintf("%5.9f %5.9f\n",x)

태그

Community Treasure Hunt

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

Start Hunting!

Translated by