Floating point to 16 bit hexadecimal
11 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Tousif Ahmed
le 23 Avr 2018
Commenté : Tousif Ahmed
le 24 Avr 2018
Hello all, how can i convert floating point decimal to 16 bit hexadecimal value?
Thank you
2 commentaires
Guillaume
le 24 Avr 2018
Specifying the encoding used would be helpful. Is it IEEE 754 half precision you're after?
Réponse acceptée
Ameer Hamza
le 24 Avr 2018
Modifié(e) : Ameer Hamza
le 24 Avr 2018
You can use this file exchange submission. It will convert your number to 16-bit half precision format. But instead of returning as a string, it will return the equivalent uint16 MATLAB object. To get binary string, you can do this,
halfPrecisionNumber = halfprecision(1.2); % halfprecision() is provided in the file exchange package.
halfPrecisionString = dec2bin(halfPrecisionNumber, 16);
In case you face the following error on running the package
"Floating point bit pattern is not IEEE 754"
you can try following
- Open halfprecision.c file.
- Add following to include section
#include <stdint.h>
- Replace 4 #define with the following macros
#define INT16_TYPE int16_t
#define UINT16_TYPE uint16_t
#define INT32_TYPE int32_t
#define UINT32_TYPE uint32_t
- Run mex halfprecision.c.
5 commentaires
Guillaume
le 24 Avr 2018
Modifié(e) : Guillaume
le 24 Avr 2018
Use dec2hex instead of dec2bin in Ameer's answer. Do not use num2hex which is not all suited for what you want.
halfPrecisionNumber = halfprecision(1.2); % halfprecision() is provided in the file exchange package. halfPrecisionHex = dec2hex(halfPrecisionNumber, 4);
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Other Formats dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!