Borrar filtros
Borrar filtros

how to convert hex array to decimal array ?

11 visualizaciones (últimos 30 días)
tomer polsky
tomer polsky el 3 de Mayo de 2018
Comentada: Jan el 3 de Mayo de 2018
hello i want to convert hex number to dec for exmaple :
a=hex2dec('d2')
now i want an array of hex numbers for exmaple :[ d1 d2 d4 cf ] how can i convert this array ?

Respuesta aceptada

Stephen23
Stephen23 el 3 de Mayo de 2018
Editada: Stephen23 el 3 de Mayo de 2018
One char vector, fixed length hexadecimal, no spaces:
>> sscanf('d1d2d4cf','%2x')
ans =
209
210
212
207
One char vector, any length, space characters:
>> sscanf('d1 d2 d4 cf','%x')
ans =
209
210
212
207
From one cell array, any length char vectors:
>> C = {'1','d2','d4','cf'};
>> sscanf(sprintf('%s\v',C{:}),'%x\v')
ans =
1
210
212
207
  2 comentarios
tomer polsky
tomer polsky el 3 de Mayo de 2018
thank you very mach it's working
Jan
Jan el 3 de Mayo de 2018
sscanf is much more efficient than dec2hex. +1

Iniciar sesión para comentar.

Más respuestas (0)

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