Effacer les filtres
Effacer les filtres

IEEE 754 32 bit floating point single precision

53 vues (au cours des 30 derniers jours)
Sudharsan
Sudharsan le 7 Sep 2013
I have a matrix with decimal values.
say:
a=[43 75 23;85 34 78;13 78 23]
i want to convert all the values to 32-bit single precision floating point value IEEE 754 format. Can anybody help me...
or just take a=240;
i want to get "01000011011100000000000000000000"
  2 commentaires
Walter Roberson
Walter Roberson le 7 Sep 2013
Not enough bits there. 32 bits is 4 bytes, but you have given a 3 x 3 matrix.
Deepanshu Chauhan
Deepanshu Chauhan le 27 Août 2020
here is a video "https://youtu.be/kSv2bIFS0XU"

Connectez-vous pour commenter.

Réponses (2)

Walter Roberson
Walter Roberson le 7 Sep 2013
Modifié(e) : Walter Roberson le 7 Sep 2013
t = uint8(a .');
typecast( t(:), 'single')
and then reshape the result as appropriate.
Be sure to check the byte order against the other possibilities.
  2 commentaires
Sudharsan
Sudharsan le 7 Sep 2013
it is showing the following error.
Expression or statement is incorrect--possibly unbalanced (, {, or [.
Walter Roberson
Walter Roberson le 7 Sep 2013
Fixed now. I don't know how the extra comma got in there.

Connectez-vous pour commenter.


Jan
Jan le 8 Sep 2013
This shows the bit pattern of 240 represented as single precision float:
dec2bin(typecast(single(240), 'uint8'))

Catégories

En savoir plus sur Logical 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!

Translated by