How i can convert from hex numbers to charter ?
    5 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
I have hexa numbers array like this
 '12'
    'A6'
    '36'
    '36'
    'F6'
    '04'
    'EA'
    'F6'
    '4E'
    '36'
    '26'
I want to convert to charecter like this 
'Hello world'
can anyone help me to solve this problem ?
1 comentario
  DGM
      
      
 el 21 de En. de 2022
				C0 = 'Hello world';
H = ['12'; 'A6'; '36'; '36'; 'F6'; '04'; 'EA'; 'F6'; '4E'; '36'; '26'];
C = char(hex2dec(H)).'
C-C0
C = char(hex2dec(fliplr(H))).'
C-C0
It's not immediately apparent how these are encoded, or if they're encoded correctly.
Respuestas (1)
  Voss
      
      
 el 21 de En. de 2022
        hexStr = ['12';'A6';'36';'36';'F6';'04';'EA';'F6';'4E';'36';'26'];
char(bin2dec(fliplr(dec2bin(hex2dec(hexStr),8)))).'
0 comentarios
Ver también
Categorías
				Más información sobre Convert Image Type en Help Center y File Exchange.
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


