Base conversion from decimal to any base.
This implements a general base conversion between decimal and an arbitrary base. The numeric characters 0-9 are used up to base ten, then the alpha characters A-Z up to base 37 and then beyond that are ASCII characters.
menu: veeos ==> Data ==> decToBaseN
library: dataLib
o_baseNtoDec(7377,27) returns A36
o_baseNtoDec(2614,16) returns A36
This is implemented without loops so is very fast. Only positive integer values are supported.
VEE 7.0+, all platforms