mirror of
https://github.com/eddyem/lectures.git
synced 2025-12-06 02:35:18 +03:00
4 lines
64 B
Matlab
4 lines
64 B
Matlab
function xdot = ode1(x, t)
|
|
xdot = -exp(-t)*x^2;
|
|
endfunction
|