Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

My problem is, i have a 1 axis gyroscope and a 3 axis acellerometer in my device. I managed to get the quaternion through the accelerometer but i cant figure out how to do it with the gyroscope.

I want to be able to, through my gyroscope ( angular rate information) get a quaternion out of it.

share|improve this question

1 Answer

Well since your gyroscope only has 1 axis it means that the 2 other orientation axis are fixed. Then you can get your one variable axis + 2 others in a euler angle and transform it to a quaternion with this process

share|improve this answer
sorry i didn't understand, pardon my ignorance. I have 1 angular rate value (in this case a float). Could you explain better how i turn this float into "Then you can get your one variable axis + 2 others in a euler angle"? – Mathis Vic Mar 28 '10 at 15:32

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.