Guest User

Untitled

a guest
Jul 18th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.10 KB | None | 0 0
  1. for i=0:h:1
  2. ytemp = y(1);
  3. y(1) = y(1) + h * y(2);
  4. y(2) = y(2) + h * 2 * ytemp;
  5. end
Add Comment
Please, Sign In to add comment