DescTools (version 0.99.15)

BinToDec: Converts numbers from binmode, octmode or hexmode to decimal and vice versa

Description

These functions convert numbers from one base to another. There are several solutions for this problem out there, but the naming is quite heterogeneous and so consistent function names might be helpful.

Usage

BinToDec(x)
DecToBin(x)
OctToDec(x)
DecToOct(x)
HexToDec(x)
DecToHex(x)

Arguments

x
a vector of numbers, resp. alphanumerical representation of numbers (hex), to be converted.

Value

  • A numeric or character vector of the same length as x containing the converted values. Binary, octal and decimal values are numeric, hex-values are returned in character mode.

Details

BinToDec converts numbers from binary mode into decimal values. DecToBin does it the other way round. Oct means octal system and hex hexadecimal.

See Also

strtoi

Examples

Run this code
DecToBin(c(17, 25))
BinToDec(c(101, 11101))

DecToOct(c(17, 25))
OctToDec(c(11, 77))

DecToHex(c(17, 25))
HexToDec(c("FF", "AA", "ABC"))

Run the code above in your browser using DataCamp Workspace