MATLAB: Forward kinematics, Denavit Hartenberg

fkforward kinematicspeter corkerobotics toolbox

I need to make D-H parameter ( axis and tabel for this robot)
this is what i write in matlab ( robotic toolbox)
clc;clear all
L(1)=Link([0 1 0 pi/2])
L(2)=Link([0 1 1 -pi/2])
L(3)=Link([0 0 1 0])
L(1).offset=pi/2
L(2).offset=-pi/2
L(3).offset=-pi/3
L
rob=SerialLink(L)
w=[-3 3 -3 3 -1 6]
rob.plot([0 ,0 , 0 ], 'workspace',w)
And this is what show me when i plot.

Best Answer