Difference between revisions of "Scaling"

From Robotics
Jump to: navigation, search
Line 13: Line 13:
 
Several different cases can be considered:<br/>
 
Several different cases can be considered:<br/>
  
:<table style="border-bottom: solid 1px #999999">
+
:<table>
 
<tr border: none;>
 
<tr border: none;>
 
<td valign="center">&#9642; </td>
 
<td valign="center">&#9642; </td>
Line 37: Line 37:
 
</table>
 
</table>
  
<table style="border-bottom: solid 1px #999999">
+
<table>
 
<tr border: none;>
 
<tr border: none;>
 
<td valign="center">&#9642; </td>
 
<td valign="center">&#9642; </td>

Revision as of 16:06, 27 May 2014

← Back: Translation Overview: Transformations Next: Rotation

Scaling shifts coordinates similar to translation. The difference is, that translation is independent of the current coordinates. Scaling however shifts the coordinates depending on the current values. So the same trnasformation matrix has various effects on different vectors.

For the sake of simplicity scaling is explained for two-dimensional space. But the behavior of the parameters is the same for an additional third dimension. Scaling is achieved by modifying the components a and d on the first diagonal of the transformation matrix \mathbf{T}, while the other components are zero:


\mathbf{T}=
\left[\begin{array}{cc}
a & 0\\
0 & d
\end{array}\right]

Several different cases can be considered:


 \mathbf{T}_0=
\left[\begin{array}{cc}
a=1 & 0\\
0 & d=1
\end{array}\right]


\mathbf{T}_0\cdot \vec{\mathbf{q}}_0 = \vec{\mathbf{q}}_0

\mathbf{T} is the identity matrix → no effect


 \mathbf{T}_1=
\left[\begin{array}{cc}
a>1 & 0\\
0 & d=1
\end{array}\right]


\mathbf{T}_1\cdot \vec{\mathbf{q}}_0 = \vec{\mathbf{q}}_1

x-component is scaled up → vector shifted to positive x-direction