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

dxdt=dxdtOde(t,y)
%% Author: epokh
%% Website: www.epokh.org/drupy
%% This software is under GPL

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

dxdt=(A*t+B)*cos(C*t^2+D*t+theta0);

end

Contact us at files@mathworks.com