Vizzy Denavit–Hartenberg parameters: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 133: | Line 133: | ||
</td></table> | </td></table> | ||
<!-- | |||
<math> | <math> | ||
\begin{bmatrix} | \begin{bmatrix} | ||
Line 142: | Line 142: | ||
\end{bmatrix} | \end{bmatrix} | ||
</math> | </math> | ||
--> | |||
<code> | |||
//H0 (1.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0) // given per rows (Very precise MATLAB Matrix) | //H0 (1.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0) // given per rows (Very precise MATLAB Matrix) | ||
Matrix H0(4,4); | |||
H0.zero(); | |||
H0(0,0)=1.0; | |||
H0(1,2)=-1.0; | |||
H0(2,1)=1.0; | |||
H0(3,3)=1.0; | |||
</code> | |||
''Parameters by Nuno Conraria.'' | ''Parameters by Nuno Conraria.'' |
Revision as of 16:45, 27 December 2011
|
//H0 (1.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0) // given per rows (Very precise MATLAB Matrix)
Matrix H0(4,4);
H0.zero();
H0(0,0)=1.0;
H0(1,2)=-1.0;
H0(2,1)=1.0;
H0(3,3)=1.0;
Parameters by Nuno Conraria.