I've got a skew-symmetric matrix representing gyroscope measurements, say $\Omega = [p,q,r]^T$, with $p$, $q$, $r$ being the angular velocities around $X$, $Y$ and $Z$ axes. I know my system's dynamics is:
$\dot{R} = R \Omega_\times$
with $\Omega_\times$ being a skew-symmetric matrix built on $\Omega$. How do I integrate $R$ to obtain new rotation matrix from its derivative? I already have the derivative, so just the integration process seems to overwhelm me. Simple addition of $R_{new} = R + \dot{R}$ violates $SO(3)$ group's constraints ($det(R) \neq 1$).
Thanks for any help.
The general solution is $R(t)=R_0\mathrm e^{t\Omega_\times}$, where $R_0$ is any rotation matrix. You can rotate to coordinates in which $\Omega_\times$ takes the form
$$\Omega_\times=\pmatrix{0&\omega&0\\-\omega&0&0\\0&0&0}\;,$$
which leads to
$$\mathrm e^{t\Omega_\times}=\pmatrix{\cos\omega t&\sin\omega t&0\\-\sin\omega t&\cos\omega t&0\\0&0&1}\;.$$