A simple string to Hexadecimal value
조회 수: 47 (최근 30일)
이전 댓글 표시
Hi everyone I am struggling with a simple problem. I want to convert simple string 'hello' to its hexvalue (68656c6c6f). I can use dec2hex converter, but I am getting a matrix
>> dec2hex('hello')
ans =
68
65
6C
6C
6F
I tried using mat2str command which produces ['68';'65';'6C';'6C';'6F']
but I want to finally produce a simple string '68656c6c6f', when I give input as 'hello' string.
Is it possible to do that in matlab??
댓글 수: 0
채택된 답변
Azzi Abdelmalek
2015년 6월 18일
편집: Azzi Abdelmalek
2015년 6월 18일
a=dec2hex('hello');
out=reshape(a,1,[])
댓글 수: 2
참고 항목
카테고리
Help Center 및 File Exchange에서 ActiveX에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!