JHEX2DEC

版本 1.0.0.0 (358 字节) 作者: 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.