Community Profile

photo

ahmed abdelmageed


Last seen: 4 years ago Active since 2020

Followers: 0   Following: 0

Statistics

  • First Answer

View badges

Feeds

View by

Answered
code of euler's method
function E=euler(f,a,b,ya,M) h=(b-a)/M; Y=zeros(1,M+1); T=a:h:b; Y(1)=ya; for j=1:M Y(j+1)=Y(j)+h*f(T(j)); end E=[T'...

4 years ago | 0