Converting 16-bit, little-endian, 2's complement integer to regular integer
20 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Ben
le 12 Juin 2015
Commenté : Walter Roberson
le 14 Juin 2015
I'm trying to get various data sets (accelerometer, gyroscope etc.) from a AHRS (a CHR-UM6) and I'm having trouble getting the values out in the correct form. The data received (for each value) is a two row column vector such as:
247
255
These numbers are 16-bit, little-endian, 2's complement and I need to get the actual value. I hope someone can help!
Thanks, Ben
0 commentaires
Réponse acceptée
Walter Roberson
le 12 Juin 2015
swapbytes(typecast(TheByteVector, 'int16'))
TheByteVector should be uint8.
2 commentaires
Walter Roberson
le 14 Juin 2015
gyro_x = double(typecast(uint8(packet.data([2 1]),'int16')) * 0.0610352;
No need to call swapbytes if you don't need to ;-)
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Sensor Models dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!