convert decimal to hex

조회 수: 1 (최근 30일)
dhafar hamed
dhafar hamed 2020년 9월 18일
댓글: Walter Roberson 2020년 9월 19일
suppose i have below vector
V = [11, 23, 56, 67, 15, 89, 99, 12, 10, 67, 87,98,54,23,57,89,90,97,69,59, 23, 56, 67, 15, 89, 99, 12, 10, 67, 87,98,54,23,77,65,67,97,69,59, 23, 56, 67, 15, 89, 78, 12, 10, 67, 87,98,34,23,57,89,12,97,69,59]
i want to convert V to hex then the result will be as below
1E240E12A2B3C

답변 (1개)

Walter Roberson
Walter Roberson 2020년 9월 18일
sprintf('%02x',V)
  댓글 수: 1
Walter Roberson
Walter Roberson 2020년 9월 19일
What difficulty are you having?
The input you show is 60 elements if I count correctly. Your desired output example is 14 characters. There is no obvious way to get from 60 bytes of input to 14 hex digits of output.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Convert Image Type에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by