Which is better?converting hexadecimal to string directly or first converting hexa to decimal and then from decimal to string?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Meghashree G
el 30 de Sept. de 2015
Comentada: Walter Roberson
el 30 de Sept. de 2015
i have a variable containing hex value..eg:con=63727970746F,now it should be converted to string..How do i do that? Please note that i directly can't take hex value in my code since it gets generated dynamically.. i have to use the variable only!!Please help me.
THANK You
0 comentarios
Respuesta aceptada
Walter Roberson
el 30 de Sept. de 2015
char(sscanf(con, '%2x'))
provided that con is an even length.
Más respuestas (0)
Ver también
Categorías
Más información sobre Characters and Strings 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!