No BSD License  

Highlights from
Framework for differential steering vehicle

image thumbnail
from Framework for differential steering vehicle by Paolo Di Prodi
A framework for a differential steering vehicle controlled by a PID system tuned with a genetic algo

dydt=dydtOde(t,y)

%% Author: epokh
%% Website: www.epokh.org/drupy
%% This software is under GPL

function dydt=dydtOde(t,y)
%% The differential equation for the y acceleration
global A;
global B;
global C;
global D;
global theta0;

dydt=(A*t+B)*sin(C*t^2+D*t+theta0);

end

Contact us at files@mathworks.com