Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. function dydx = bvpfcn(x,y) % equation to solve
  2. dydx = zeros(2,1);
  3. dydx(1)=0.2-5*y(1)-0.1*(y(1)^2)-2*y(1)*y(2)
  4. dydx(2)=0.22-5*y(2)-0.12*(y(2)^2)-2.5*y(1)*y(2)
  5. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement