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

[theta,x,y]=deadReckonSpace(xoyo,sr,sl,theta0,bw)
%% Author: epokh
%% Website: www.epokh.org/drupy
%% This software is under GPL

function [theta,x,y]=deadReckonSpace(xoyo,sr,sl,theta0,bw)

x0=xoyo(1);
y0=xoyo(2);
theta=theta0+(sr-sl)/bw;
x=x0+(sr+sl)/2*(cos(theta));
y=y0+(sr+sl)/2*(sin(theta));


end

Contact us at files@mathworks.com