Convert decimal integer to arbitrary base.
Version 1.1.0.0 (1.4 KB) by
DS
DECIMAL_CONVERT generates a vector of coefficients representing a base 10 integer in a chosen base.
DECIMAL_CONVERT(D,B) returns the representation of decimal integer, D, as a vector of coefficients such that:
D = xn*B^n + ... + x2*B^2 + x1*B^1 + x0*B^0
where B is the chosen base.
See also polyval, dec2base, base2dec, de2bi, bi2de.
Cite As
DS (2025). Convert decimal integer to arbitrary base. (https://www.mathworks.com/matlabcentral/fileexchange/35133-convert-decimal-integer-to-arbitrary-base), MATLAB Central File Exchange. Retrieved .
MATLAB Release Compatibility
Created with
R2007b
Compatible with any release
Platform Compatibility
Windows macOS LinuxCategories
Find more on Data Type Conversion in Help Center and MATLAB Answers
Tags
Acknowledgements
Inspired: Convert an A1-style spreadsheet column label to a number.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!Discover Live Editor
Create scripts with code, output, and formatted text in a single executable document.