mirror of
https://github.com/eddyem/lectures.git
synced 2025-12-06 02:35:18 +03:00
5 lines
121 B
Matlab
5 lines
121 B
Matlab
% Initialisation of Van der Pol with mu=1
|
|
function dydt = vdp1(t,y)
|
|
dydt = [y(2); (1-y(1)^2)*y(2)-y(1)];
|
|
endfunction
|