Community Profile

photo

ali alnashri


Last seen: 3 years ago Active since 2021

Followers: 0   Following: 0

Statistics

  • First Answer
  • Revival Level 1

View badges

Feeds

View by

Answered
Solve IVP with modified Euler's method
function [T,Y] = euler_modified(f,a,b,ya,m) h = (b - a)/m; T = zeros(1,m+1); Y = zeros(1,m+1); T(1) = a; Y(1) = ya; for j...

3 years ago | 0