Orthogonal Transformation
·
Physics/수리물리
Rotation2 dimesion Cartesian coordinate에 점 $(x, y)$가 주어졌다고 하자. 이때 기존 좌표계를 원점을 기준으로 반시계 방향으로 $\theta$만큼 회전했을 때 기존 점의 좌표와 변경된 점의 좌표 $(x', y')$는 다음의 관계식을 통해 기술된다. $$\begin{pmatrix} x' \\ y' \end{pmatrix} = \begin{pmatrix} \cos \theta & \sin \theta \\ - \sin \theta & \cos \theta \end{pmatrix} \begin{pmatrix} x \\ y \end{pmatrix}$$ 이때 $$S = \begin{pmatrix} \cos \theta & \sin \theta \\ - \sin \theta &..