Borrar filtros
Borrar filtros

BUG in dec2hex

2 visualizaciones (últimos 30 días)
XX
XX el 4 de Sept. de 2023
Editada: Stephen23 el 4 de Sept. de 2023
  1 comentario
Stephen23
Stephen23 el 4 de Sept. de 2023
Editada: Stephen23 el 4 de Sept. de 2023
You do not explain what the problem is.
Note that your last example uses DOUBLE class and not UINT64, which clearly has a different bit pattern:
u = bitxor(uint64(0xFF000000),0xFFFFFFFFFFFFFFFF)
u = uint64 18446744069431361535
dec2hex(u)
ans = 'FFFFFFFF00FFFFFF'
d = double(u) % The same value you entered by hand
d = 1.8447e+19
dec2hex(d)
ans = 'FFFFFFFF01000000'

Iniciar sesión para comentar.

Respuestas (0)

Categorías

Más información sobre Numbers and Precision en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by