Become an expert in R — Interactive courses, Cheat Sheets, certificates and more!
Get Started for Free

rot2eul

Compute the Euler angles from a rotation matrix on SO(3).


Description

It calculates three euler angles (θ_{12}, θ_{13}, θ_{23}) from a (3 \times 3) rotation matrix X, where X is defined as X = R_z(θ_{12})\times R_y(θ_{13}) \times R_x(θ_{23}). Here R_x(θ_{23}) means a rotation of θ_{23} radians about the x axis.

Usage

rot2eul(X)

Arguments

X

A rotation matrix which is defined as a product of three elementary rotations mentioned above. Here θ_{12}, θ_{23} \in (-π, π) and and θ_{13} \in (-π/2, π/2).

Details

Given a rotation matrix X, euler angles are computed by equating each element in X with the corresponding element in the matrix product defined above. This results in nine equations that can be used to find the euler angles.

Value

For a given rotation matrix, there are two eqivalent sets of euler angles.

Author(s)

Anamul Sajib<sajibstat@du.ac.bd>

R implementation and documentation: Anamul Sajib<sajibstat@du.ac.bd>

References

Green, P. J. \& Mardia, K. V. (2006). Bayesian alignment using hierarchical models, with applications in proteins bioinformatics. Biometrika, 93(2):235–254.

http://www.staff.city.ac.uk/~sbbh653/publications/euler.pdf

See Also

Examples

# three euler angles

theta.12 <- sample( seq(-3, 3, 0.3), 1 )
theta.23 <- sample( seq(-3, 3, 0.3), 1 )
theta.13 <- sample( seq(-1.4, 1.4, 0.3), 1 )

theta.12 ; theta.23 ; theta.13

X <- eul2rot(theta.12, theta.23, theta.13)
X  ##  A rotation matrix

e <- rot2eul(X)$v1

theta.12 <- e[3]
theta.23 <- e[2]
theta.13 <- e[1]

theta.12 ; theta.23 ; theta.13

Directional

A Collection of R Functions for Directional Data Analysis

v4.9
GPL-2
Authors
Michail Tsagris, Giorgos Athineou, Anamul Sajib, Eli Amson, Micah J. Waldstein
Initial release
2021-03-26

We don't support your browser anymore

Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.