Guest User

Untitled

a guest
Jul 10th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MatLab 0.12 KB | None | 0 0
  1. % suppose the function is dy/dx = x/y
  2. f=@(x,y) x./y;
  3. t0 = 0;
  4. t1 = 5;
  5. y_0 = 2;
  6. [x1, y1] = odesolver(f, t0, t1, y_0, 100)
Add Comment
Please, Sign In to add comment