Hi guys,
I've got some MATLAB code that calculates the forward kinematics for a robotic arm. This calculation relies on the successive multiplication of a series of 4x4 matrices, and currently I have this coded (more or less) as:
...
T(:,:, 1) = T0;
for i = 2:njoints
T(:,:, i+1) =...