photo

ahmed abdelmageed


Last seen: environ 4 ans il y a Actif depuis 2020

Followers: 0   Following: 0

Statistiques

  • First Answer

Afficher les badges

Feeds

Afficher par

Réponse apportée
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'...

environ 4 ans il y a | 0