how binary floating point to real decimal number representation ?
Afficher commentaires plus anciens
Hi, :
I'm sorry, if ask the wrong question, actually I don't know which domain it is, just know it's about math, logic, programming, which Matlab plays a very important part in the world.
My question is , in computer domain, there are floating point, eg: single/double precision floating point, which store variables in [sign, exponent, significand] format sized in [1, 11, 52] bits (for 64 bit precision double type) , refer to https://en.wikipedia.org/wiki/Double-precision_floating-point_format
How do those floating number stored in computer (normally, binary format) to represent in decimal (with fractional number , between 0 ~ 1), especially, those numbers been right of the '.' (radix).
For example, a floating number in binary, 1.111111 is in decimal = 1.9844, how do the computer represent the .9844 to us ? From many docs, they all say, it's ' 2^-1 + 2^-2 +...+ 2^-6', but that's not what I want to ask, it's most likely I am curious about how do the computer translate 0.5 + 0.25 + .... + 0.0156, in computer, they are binary, only 010101..., so when they do arithmetic, they are based on 0,1,0,1..., so that definitely won't really recognize the decimal, '0.5', '0.25', ...,etc, but when we do those simple directives in Matlab, bin2dec(), f_b2d, it quickly gives the answers, I am interested in 'who' do those binary to 'decimal-string-output' task, in which level ? compiler ? What's the domain talking about those domain ?
Thank you very much.
Best regards.
2 commentaires
"For example, a floating number in binary, 1.111111 is in decimal = 1.9844..."
The value 1.9844 as Double binary floating point would actually be:
0 01111111111 1111110000000001101000110110111000101110101100011100
^ Sign bit
^^^^^^^^^^^ Exponent
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Fraction
And as Single binary floating point would be
0 01111111 11111100000000011010010
^ Sign bit
^^^^^^^^ Exponent
^^^^^^^^^^^^^^^^^^^^^^^ Fraction
How the Sign, Exponent, and Fraction are defined is explained in the link that you give in your question.
Tamura Kentai
le 12 Juil 2019
Réponse acceptée
Plus de réponses (1)
James Tursa
le 12 Sep 2019
You can't use dec2bin( ) reliably for this conversion in all versions of MATLAB because it is limited by flintmax (see note at bottom of doc). I.e., even though it lists int64 and uint64 as acceptable data type inputs, it really can't handle all of the values properly. E.g., using a simple example where we expect all of the mantissa bits to be 1's
R2016a & R2019a WIN64:
>> num2hex(realmax)
ans =
7fefffffffffffff <-- We should expect lots of trailing 1's
>> dec2bin(typecast(realmax,'uint64'),64)
ans =
0111111111110000000000000000000000000000000000000000000000000000 <-- TOTALLY goofed up!
>> reshape(dec2bin(sscanf(num2hex(realmax),'%1x'),4)',1,[]) % do it one hex digit at a time
ans =
0111111111101111111111111111111111111111111111111111111111111111 <-- This is what we were expecting
Both R2016a and R2019a dec2bin( ) can't handle the large uint64 value properly.
Catégories
En savoir plus sur Data Type Conversion dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!