Base Conversions {DescTools} | R Documentation |
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. |
Details
BinToDec converts numbers from binary mode into decimal values. DecToBin does it the other way round.
Oct means octal system and hex hexadecimal.
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 as class hexmode
.
Author(s)
Andri Signorell <andri@signorell.net>
See Also
Examples
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"))
[Package DescTools version 0.99.55 Index]