Quaternion rotation around only two axes.

Hello all,
I am working on a problem where i am using quaternions to put meaured accelerations into the global reference frame (North-East-Down). When I rotate the acceleraion vectors by the conjugate of the quaternions it does this perfectly. However, what if i wanted to keep the Heading (the yaw, or the k component on the quaterion) the same and not rotate my accelerations about this axis as to not change the heading? How would i go about doing this? is this possible?
thank you for your input

4 Comments

You mean you want to rotate by only that portion that is not about the Heading direction? I.e., construct a new quaternion that has this rotation component removed?
Hi James, thanks for your repsonse. This is exactly what i mean. The quaternion is in the format [0 i j k], where k is the heading (yaw term). If i just make the entire k column 0, will that not affect the rest of the quaternion? or is it that simple?
thanks for your feedback.
Can you post the exact code you are using currently to rotate your acceleration vector?
Aboslutly, here we go.
acc = quatrotate(quatconj(quat), acc);
quat is a 4 x m array where the first columns go [0 i j k] and describes the orinetation of the sensor relative to NED reference frame.
thank you

Sign in to comment.

Answers (1)

Hi,
You can convert the quaternion to euler angles and then set the yaw(z axis) to zero and then convert it back to quaternion and do the required rotations.
quat = quaternion(0,.1,.2,.3) %Sample data
ang = quat2eul(quat) %get euler angles
ang_new = ang
ang_new(1) = 0 %set yaw to zero
quat_new = quaternion(eul2quat(ang_new)) %convert it back to quaternion
Hope this helps !!

2 Comments

Hello Amrtanshu, thanks for the reply, i was using this method in the meantime.
I was hoping to find a way to do this completely with quaternions. Do you know how to do this soley using quaternions and not converting to euler Angles as an intermediate step?
Looking forward to hearing from you!
Directly getting the desired quaternion after eliminating rotation along a specific axis is not possible in Matlab. However, you can derive a set of equations using basic quaternion and vector calculations to get rotation quaternion after eliminating rotation along a specific axis.

Sign in to comment.

Asked:

on 11 Dec 2020

Commented:

on 23 Dec 2020

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!