Vizzy Denavit–Hartenberg parameters: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 42: | Line 42: | ||
|} | |} | ||
<table><tr><td> | <table><tr><td align="center"> | ||
{| class="wikitable" style="text-align: center" | {| class="wikitable" style="text-align: center" | ||
| style="background:#d0d0d0;" colspan="6" | Right eye | | style="background:#d0d0d0;" colspan="6" | Right eye | ||
Line 65: | Line 65: | ||
| 5||0||0.05||0||0||M5 → End-effector | | 5||0||0.05||0||0||M5 → End-effector | ||
|} | |} | ||
</td><td> | </td><td align="center"> | ||
{| class="wikitable" style="text-align: center" | {| class="wikitable" style="text-align: center" | ||
| style="background:#d0d0d0;" colspan="6" | Left eye | | style="background:#d0d0d0;" colspan="6" | Left eye | ||
Line 90: | Line 90: | ||
</td></tr></table> | </td></tr></table> | ||
<table><tr><td> | <table><tr><td align="center"> | ||
{| class="wikitable" style="text-align: center" | {| class="wikitable" style="text-align: center" | ||
| style="background:#d0d0d0;" colspan="6" | Right arm | | style="background:#d0d0d0;" colspan="6" | Right arm | ||
Line 121: | Line 121: | ||
| 9||-Pi/2||-0.1||0||0||M7R → End-effector | | 9||-Pi/2||-0.1||0||0||M7R → End-effector | ||
|} | |} | ||
</td><td> | </td><td align="center"> | ||
{| class="wikitable" style="text-align: center" | {| class="wikitable" style="text-align: center" | ||
| style="background:#d0d0d0;" colspan="6" | Left arm | | style="background:#d0d0d0;" colspan="6" | Left arm |
Revision as of 11:48, 3 January 2012
|
Virtual link corresponds to:
<math> H_0= \begin{bmatrix} 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 \end{bmatrix} </math>
or if you prefer 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) 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.