convertting from char or double to hex ?

11 visualizaciones (últimos 30 días)
ahmed
ahmed el 3 de Abr. de 2013
Hi, i have a vector which is zeros and ones say A=[1 0 1 0 0 0 1 0] its type is double and i want to convert it to hexadecimal representation i,e the result would be : A2

Respuesta aceptada

Walter Roberson
Walter Roberson el 3 de Abr. de 2013
hextable = '0123456789ABCD';
hextable( A(1:4:end) * 8 + A(2:4:end) * 4 + A(3:4:end) * 2 + A(4:4:end) + 1 )

Más respuestas (1)

ahmed
ahmed el 3 de Abr. de 2013
thanks walter that works pretty good

Categorías

Más información sobre Data Type Conversion 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