SilLAwNeD

Scilab, vdp function

Nov 28th, 2018
374
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Scilab 0.11 KB | None | 0 0
  1. function [y] = vdp(t, x)
  2.     c = 0.4;
  3.  
  4.     y(1) = x(2);
  5.     y(2) = c * (1 - x(1) * x(1)) * x(2) - x(1);
  6. endfunction
Add Comment
Please, Sign In to add comment