Convert E2AF(hexadecimal)to base 10(decimal)

Hello, I'm new to MatLab and wanted a little help with the question in the title.
>> hex2dec(E2AF)
using
>> hexStr=E2AF
but it keeps returning this error:
Unrecognized function or variable 'E2AF'.
Let me know if you think you could help! I woud really appreciate it!

Respuestas (1)

Walter Roberson
Walter Roberson el 4 de Feb. de 2020
dec2hex('E2AF')
or
sscanf('E2Af', '%x')
or starting in R2019b,
0xE2AF %hex constants are accepted!

Categorías

Productos

Etiquetas

Preguntada:

el 4 de Feb. de 2020

Respondida:

el 4 de Feb. de 2020

Community Treasure Hunt

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

Start Hunting!

Translated by