Adding Hexadecimal numbers?

75 visualizaciones (últimos 30 días)
Jed Louise Ledesma
Jed Louise Ledesma el 17 de Oct. de 2019
Respondida: Walter Roberson el 17 de Oct. de 2019
Can someone help me how to add 2 hexadecimal numbers? I would appreciate the help and sentiment.
I tried using: c=dec2hex(hex2dec(a)+hex2dec(b)));
But it didn't work. Is there a correct way to do this?

Respuesta aceptada

Robert U
Robert U el 17 de Oct. de 2019
Hi Jed Louise Lesma,
Despite the extra bracket in your code (I removed it), the method you tried should work:
a = '3afb';
b = '2839';
c=dec2hex(hex2dec(a)+hex2dec(b));
Kind regards,
Robert
  3 comentarios
Robert U
Robert U el 17 de Oct. de 2019
The "hex"-values are supposed to be given as char. Thus the str2double()-command should be deleted.
Kind regards,
Robert
Jed Louise Ledesma
Jed Louise Ledesma el 17 de Oct. de 2019
I appreciate what you did.
Thank you!

Iniciar sesión para comentar.

Más respuestas (2)

Steven Lord
Steven Lord el 17 de Oct. de 2019
If you're using release R2019b or later, you can enter hexadecimal numbers directly.
>> 0x3afb + 0x2839
ans =
uint16
25396
>> hex2dec('3afb')+hex2dec('2839')
ans =
25396

Walter Roberson
Walter Roberson el 17 de Oct. de 2019
If there is a possibility that the user might enter hex values with more than 53 significant bits then you should use sscanf with %lx format instead of hex2dec.

Categorías

Más información sobre Digital Input and Output 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