JHEX2DEC

버전 1.0.0.0 (358 Bytes) 작성자: Michael Kleder
Arbitrary length hex to decimal conversion.
다운로드 수: 2.4K
업데이트 날짜: 2005/6/1

라이선스 없음

This is a little ditty I put together while playing with Java. Remember that inputs and outputs are character arrays. I used Java rather than the Symbolic Toolbox.

USAGE:
c = jhex2dec(h);

VARIABLES:
h = hexdecimal input character array
c = decimal output character array

인용 양식

Michael Kleder (2024). JHEX2DEC (https://www.mathworks.com/matlabcentral/fileexchange/7063-jhex2dec), MATLAB Central File Exchange. 검색됨 .

MATLAB 릴리스 호환 정보
개발 환경: R14SP1
모든 릴리스와 호환
플랫폼 호환성
Windows macOS Linux
카테고리
Help CenterMATLAB Answers에서 Numbers and Precision에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!
버전 게시됨 릴리스 정보
1.0.0.0

Change "char(c)" to "char(c.toString)" where c is a Java BigInteger, to make compatible with newer Matlab versions.