logo back up home forward   further reading more topics »

Maths - Quaternion to Euler - Example

In order to check we are getting the correct result this page starts with a euler angle, converts it to a quaternion, then converts it back to to euler angle. When we have done the complete rond trip we end up with the same angles which gives confidence that the method is correct.

So lets start with the following euler angle:

heading = 10 degrees 
attitude = 20 degrees 
bank = 30 degrees

We then convert to quaternion using the first method on this page. Note that most maths libraries use radians so you will probably need to convert degrees to radians by multiplying by PI/180 = 0.01745.

c1 = cos(5 deg) = 0.9962  
c2 = cos(10 deg) = 0.9848  
c3 = cos(15 deg) = 0.9659  
s1 = sin(5 deg) = 0.0872  
s2 = sin(10 deg) = 0.1736  
s3 = sin(15 deg) = 0.2588  

So using the formular gives the following result:
 
qw = 0.9437  
qx = 0.2685  
qy = 0.1277  
qz = 0.1448

We now convert back to euler angles using the method on this page.

First we work out the heading part: this involves using the atan2 function. Implemetations of this function may vary, so be careful about the order of the operands, this page describes the issues.
 
tan(heading y part): usually the first operand= 0.1633  
tan(heading x part): usually the second operand= 0.9254

I used atan(y/x) instead of atan2(y,x) as I was looking up the values in 4 figure tables instead of using a computer program. However, because the angles are all in the first quadrant, I believe these are equivalent since in fist quadrant: 
tan(a) = sin(a)/cos(a) = opposite/adjacent = y/x 
and 
atan2(y,x) = atan2(opposite,adjacent)

tan(heading) = 0.1764

heading = 10 degrees

 

Calculating the attitude:
 
sin(attitude) = 0.3419

attitude = 20 degrees

 

Calculating the bank:
 
tan(bank y part) = 0.4698  
tan(bank x part) = 0.8138  
tan(bank) = 0.5773

bank = 30 degrees

 

An OpenOffice.org with these calulations is here


metadata block
see also:

 

Correspondence about this page

Book Shop - Further reading.

Where I can, I have put links to Amazon for books that are relevant to the subject, click on the appropriate country flag to get more details of the book or to buy it from them.

cover us uk de jp fr caVisualizing Quaternions by Andrew J. Hanson

Other Math Books

Commercial Software Shop

Where I can, I have put links to Amazon for commercial software, not directly related to the software project, but related to the subject being discussed, click on the appropriate country flag to get more details of the software or to buy it from them.

cover Dark Basic Professional Edition - It is better to get this professional edition

cover This is a version of basic designed for building games, for example to rotate a cube you might do the following:
make object cube 1,100
for x=1 to 360
rotate object 1,x,x,0
next x

cover Game Programming with Darkbasic - book for above software

 

Can you help?

Please send me any improvements to here. I would appreciate ideas to make the pages more useful including error correction, ideas for new pages, improvements to wording. It helps if you quote the full URL of the page.

 

progam

I am working on a project which uses these principles, if you would like to help me with this you are welcome to join in, here:

http://sourceforge.net/projects/mjbworld/

This site may have errors. Don't use for critical systems.

Copyright (c) 1998-2008 Martin John Baker - All rights reserved - privacy policy.