Advertisement
Lauda

Untitled

Nov 30th, 2012
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MatLab 0.28 KB | None | 0 0
  1. function xp = kolokzad1(t,x )
  2. n = rem(t,3);
  3. u = ((-3/9)*t+3).*(n>1);
  4. e = u-0.5*x(1)^2;
  5. q = x(1)^2;
  6. t = 0:0.01:10-0.01;
  7.  
  8. xp = [  x(2)
  9.         4*e-x(1)-x(2)
  10.         x(4)
  11.         q-x(3) ];
  12.  
  13. end
  14.  
  15.  
  16. % [t,x] = ode23(@kolokzad1, [0 9], [-1; 2; 0; 1]);
  17. % y=x(:,3);
  18. % plot(t,y)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement