Differential Equations - Euler's Method
tutorial.math.lamar.edu › Classes › DEDec 03, 2018 · So, here is a bit of pseudo-code that you can use to write a program for Euler’s Method that uses a uniform step size, h h. define f (t,y) f ( t, y). input t0 t 0 and y0 y 0. input step size, h h and the number of steps, n n. for j j from 1 to n n do. m= f (t0,y0) m = f ( t 0, y 0) y1 =y0+h ∗m y 1 = y 0 + h ∗ m.